2024-01-24T02:42:44.573 INFO:root:teuthology version: 0.0.1.dev251+gc856e0f 2024-01-24T02:42:44.573 DEBUG:teuthology.run:Teuthology command: teuthology --owner scheduled_yuriw@teuthology --description rados/cephadm/smoke-roleless/{0-distro/ubuntu_18.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} --name yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi --verbose --archive /home/teuthworker/archive/yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi/7529863 -- /home/teuthworker/archive/yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi/7529863/orig.config.yaml 2024-01-24T02:42:44.607 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-01-24T02:42:44.699 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi/7529863 branch: wip-yuri5-testing-2024-01-11-1300-pacific description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_18.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: yweinste@redhat.com first_in_suite: false job_id: '7529863' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-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-yuri5-testing-2024-01-11-1300-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: a70aebef70df6ec2d957347ccbfc484e0573dd5f ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: a70aebef70df6ec2d957347ccbfc484e0573dd5f workunit: branch: wip-lflores-testing-2-2024-01-23-1755-pacific sha1: 54ea2bd75ede6da27ba5852fe5d99aab52f94305 owner: scheduled_yuriw@teuthology priority: 75 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 3235 sha1: a70aebef70df6ec2d957347ccbfc484e0573dd5f sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: wip-lflores-testing-2-2024-01-23-1755-pacific suite_path: /home/teuthworker/src/github.com_ljflores_ceph_54ea2bd75ede6da27ba5852fe5d99aab52f94305/qa suite_relpath: qa suite_repo: https://github.com/ljflores/ceph.git suite_sha1: 54ea2bd75ede6da27ba5852fe5d99aab52f94305 targets: smithi152.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE= smithi195.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 --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\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 /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: c856e0f9244dd29a50697123b480d63f16a4ed81 timestamp: 2024-01-23_19:22:22 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-01-24T02:42:44.699 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ljflores_ceph_54ea2bd75ede6da27ba5852fe5d99aab52f94305/qa; will attempt to use it 2024-01-24T02:42:44.699 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ljflores_ceph_54ea2bd75ede6da27ba5852fe5d99aab52f94305/qa/tasks 2024-01-24T02:42:44.700 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-01-24T02:42:44.703 INFO:teuthology.task.internal:Checking packages... 2024-01-24T02:42:44.728 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'a70aebef70df6ec2d957347ccbfc484e0573dd5f' 2024-01-24T02:42:44.728 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-01-24T02:42:44.728 INFO:teuthology.packaging:ref: None 2024-01-24T02:42:44.728 INFO:teuthology.packaging:tag: None 2024-01-24T02:42:44.728 INFO:teuthology.packaging:branch: wip-yuri5-testing-2024-01-11-1300-pacific 2024-01-24T02:42:44.728 INFO:teuthology.packaging:sha1: a70aebef70df6ec2d957347ccbfc484e0573dd5f 2024-01-24T02:42:44.729 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F18.04%2Fx86_64&ref=wip-yuri5-testing-2024-01-11-1300-pacific 2024-01-24T02:42:44.943 INFO:teuthology.task.internal:Found packages for ceph version 16.2.14-449-ga70aebef-1bionic 2024-01-24T02:42:44.945 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-01-24T02:42:44.951 INFO:teuthology.task.internal:no buildpackages task found 2024-01-24T02:42:44.951 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-01-24T02:42:44.957 INFO:teuthology.task.internal:Saving configuration 2024-01-24T02:42:44.970 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-01-24T02:42:44.976 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-01-24T02:42:45.000 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi152.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi/7529863', '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-24 02:37:18.114509', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII4U6ItCfOdoN1WdROC3KO40lcw/kzXeIM8M8q950kfL'} 2024-01-24T02:42:45.023 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi195.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi/7529863', '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-24 02:37:18.116373', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII4U6ItCfOdoN1WdROC3KO40lcw/kzXeIM8M8q950kfL'} 2024-01-24T02:42:45.023 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-01-24T02:42:45.029 INFO:teuthology.task.internal:roles: ubuntu@smithi152.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-01-24T02:42:45.029 INFO:teuthology.task.internal:roles: ubuntu@smithi195.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-01-24T02:42:45.029 INFO:teuthology.run_tasks:Running task console_log... 2024-01-24T02:42:45.100 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f82055f8160>, signals=[15]) 2024-01-24T02:42:45.101 INFO:teuthology.run_tasks:Running task internal.connect... 2024-01-24T02:42:45.107 INFO:teuthology.task.internal:Opening connections... 2024-01-24T02:42:45.107 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi152.front.sepia.ceph.com 2024-01-24T02:42:45.109 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-24T02:42:45.189 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi195.front.sepia.ceph.com 2024-01-24T02:42:45.190 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi195.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-24T02:42:45.266 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-01-24T02:42:45.273 DEBUG:teuthology.orchestra.run.smithi152:> uname -m 2024-01-24T02:42:45.312 INFO:teuthology.orchestra.run.smithi152.stdout:x86_64 2024-01-24T02:42:45.312 DEBUG:teuthology.orchestra.run.smithi152:> cat /etc/os-release 2024-01-24T02:42:45.361 INFO:teuthology.orchestra.run.smithi152.stdout:NAME="Ubuntu" 2024-01-24T02:42:45.362 INFO:teuthology.orchestra.run.smithi152.stdout:VERSION="18.04.6 LTS (Bionic Beaver)" 2024-01-24T02:42:45.362 INFO:teuthology.orchestra.run.smithi152.stdout:ID=ubuntu 2024-01-24T02:42:45.362 INFO:teuthology.orchestra.run.smithi152.stdout:ID_LIKE=debian 2024-01-24T02:42:45.362 INFO:teuthology.orchestra.run.smithi152.stdout:PRETTY_NAME="Ubuntu 18.04.6 LTS" 2024-01-24T02:42:45.362 INFO:teuthology.orchestra.run.smithi152.stdout:VERSION_ID="18.04" 2024-01-24T02:42:45.362 INFO:teuthology.orchestra.run.smithi152.stdout:HOME_URL="https://www.ubuntu.com/" 2024-01-24T02:42:45.362 INFO:teuthology.orchestra.run.smithi152.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-01-24T02:42:45.362 INFO:teuthology.orchestra.run.smithi152.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-01-24T02:42:45.362 INFO:teuthology.orchestra.run.smithi152.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-01-24T02:42:45.362 INFO:teuthology.orchestra.run.smithi152.stdout:VERSION_CODENAME=bionic 2024-01-24T02:42:45.362 INFO:teuthology.orchestra.run.smithi152.stdout:UBUNTU_CODENAME=bionic 2024-01-24T02:42:45.363 INFO:teuthology.lock.ops:Updating smithi152.front.sepia.ceph.com on lock server 2024-01-24T02:42:45.383 DEBUG:teuthology.orchestra.run.smithi195:> uname -m 2024-01-24T02:42:45.389 INFO:teuthology.orchestra.run.smithi195.stdout:x86_64 2024-01-24T02:42:45.390 DEBUG:teuthology.orchestra.run.smithi195:> cat /etc/os-release 2024-01-24T02:42:45.439 INFO:teuthology.orchestra.run.smithi195.stdout:NAME="Ubuntu" 2024-01-24T02:42:45.439 INFO:teuthology.orchestra.run.smithi195.stdout:VERSION="18.04.6 LTS (Bionic Beaver)" 2024-01-24T02:42:45.439 INFO:teuthology.orchestra.run.smithi195.stdout:ID=ubuntu 2024-01-24T02:42:45.439 INFO:teuthology.orchestra.run.smithi195.stdout:ID_LIKE=debian 2024-01-24T02:42:45.440 INFO:teuthology.orchestra.run.smithi195.stdout:PRETTY_NAME="Ubuntu 18.04.6 LTS" 2024-01-24T02:42:45.440 INFO:teuthology.orchestra.run.smithi195.stdout:VERSION_ID="18.04" 2024-01-24T02:42:45.440 INFO:teuthology.orchestra.run.smithi195.stdout:HOME_URL="https://www.ubuntu.com/" 2024-01-24T02:42:45.440 INFO:teuthology.orchestra.run.smithi195.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-01-24T02:42:45.440 INFO:teuthology.orchestra.run.smithi195.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-01-24T02:42:45.440 INFO:teuthology.orchestra.run.smithi195.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-01-24T02:42:45.440 INFO:teuthology.orchestra.run.smithi195.stdout:VERSION_CODENAME=bionic 2024-01-24T02:42:45.440 INFO:teuthology.orchestra.run.smithi195.stdout:UBUNTU_CODENAME=bionic 2024-01-24T02:42:45.440 INFO:teuthology.lock.ops:Updating smithi195.front.sepia.ceph.com on lock server 2024-01-24T02:42:45.458 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-01-24T02:42:45.467 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-01-24T02:42:45.472 INFO:teuthology.task.internal:Checking for old test directory... 2024-01-24T02:42:45.472 DEBUG:teuthology.orchestra.run.smithi152:> test '!' -e /home/ubuntu/cephtest 2024-01-24T02:42:45.474 DEBUG:teuthology.orchestra.run.smithi195:> test '!' -e /home/ubuntu/cephtest 2024-01-24T02:42:45.486 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-01-24T02:42:45.492 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-01-24T02:42:45.492 DEBUG:teuthology.orchestra.run.smithi152:> test -z $(ls -A /var/lib/ceph) 2024-01-24T02:42:45.521 DEBUG:teuthology.orchestra.run.smithi195:> test -z $(ls -A /var/lib/ceph) 2024-01-24T02:42:45.547 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-01-24T02:42:45.601 INFO:teuthology.run_tasks:Running task kernel... 2024-01-24T02:42:45.616 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-01-24T02:42:45.616 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-01-24T02:42:45.616 DEBUG:teuthology.orchestra.run.smithi152:> test -f /run/.containerenv -o -f /.dockerenv 2024-01-24T02:42:45.617 DEBUG:teuthology.orchestra.run.smithi195:> test -f /run/.containerenv -o -f /.dockerenv 2024-01-24T02:42:45.621 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-24T02:42:45.622 DEBUG:teuthology.orchestra.run.smithi152:> uname -r 2024-01-24T02:42:45.622 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-24T02:42:45.623 DEBUG:teuthology.orchestra.run.smithi195:> uname -r 2024-01-24T02:42:45.669 INFO:teuthology.orchestra.run.smithi152.stdout:4.15.0-200-generic 2024-01-24T02:42:45.669 INFO:teuthology.task.kernel:Running kernel on smithi152: 4.15.0-200-generic 2024-01-24T02:42:45.669 DEBUG:teuthology.orchestra.run.smithi152:> sudo apt-get clean 2024-01-24T02:42:45.671 INFO:teuthology.orchestra.run.smithi195.stdout:4.15.0-200-generic 2024-01-24T02:42:45.671 INFO:teuthology.task.kernel:Running kernel on smithi195: 4.15.0-200-generic 2024-01-24T02:42:45.671 DEBUG:teuthology.orchestra.run.smithi195:> sudo apt-get clean 2024-01-24T02:42:45.779 DEBUG:teuthology.orchestra.run.smithi195:> sudo apt-get update 2024-01-24T02:42:45.789 DEBUG:teuthology.orchestra.run.smithi152:> sudo apt-get update 2024-01-24T02:42:45.971 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-01-24T02:42:46.008 INFO:teuthology.orchestra.run.smithi195.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 2024-01-24T02:42:46.022 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-01-24T02:42:46.023 INFO:teuthology.orchestra.run.smithi152.stdout:Get:2 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 2024-01-24T02:42:46.051 INFO:teuthology.orchestra.run.smithi195.stdout:Get:3 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 2024-01-24T02:42:46.063 INFO:teuthology.orchestra.run.smithi152.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 2024-01-24T02:42:46.248 INFO:teuthology.orchestra.run.smithi195.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [83.3 kB] 2024-01-24T02:42:46.286 INFO:teuthology.orchestra.run.smithi152.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [83.3 kB] 2024-01-24T02:42:46.393 INFO:teuthology.orchestra.run.smithi152.stdout:Get:5 http://security.ubuntu.com/ubuntu bionic-security/main i386 Packages [1,379 kB] 2024-01-24T02:42:46.417 INFO:teuthology.orchestra.run.smithi195.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main i386 Packages [1,665 kB] 2024-01-24T02:42:46.536 INFO:teuthology.orchestra.run.smithi195.stdout:Get:6 http://security.ubuntu.com/ubuntu bionic-security/main i386 Packages [1,379 kB] 2024-01-24T02:42:46.542 INFO:teuthology.orchestra.run.smithi152.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main i386 Packages [1,665 kB] 2024-01-24T02:42:46.793 INFO:teuthology.orchestra.run.smithi152.stdout:Get:7 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [2,717 kB] 2024-01-24T02:42:46.912 INFO:teuthology.orchestra.run.smithi195.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [3,045 kB] 2024-01-24T02:42:46.995 INFO:teuthology.orchestra.run.smithi195.stdout:Get:8 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [2,717 kB] 2024-01-24T02:42:47.017 INFO:teuthology.orchestra.run.smithi152.stdout:Get:8 http://security.ubuntu.com/ubuntu bionic-security/main Translation-en [467 kB] 2024-01-24T02:42:47.055 INFO:teuthology.orchestra.run.smithi152.stdout:Get:9 http://security.ubuntu.com/ubuntu bionic-security/restricted i386 Packages [33.0 kB] 2024-01-24T02:42:47.055 INFO:teuthology.orchestra.run.smithi152.stdout:Get:10 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [1,317 kB] 2024-01-24T02:42:47.089 INFO:teuthology.orchestra.run.smithi152.stdout:Get:11 http://security.ubuntu.com/ubuntu bionic-security/restricted Translation-en [182 kB] 2024-01-24T02:42:47.092 INFO:teuthology.orchestra.run.smithi152.stdout:Get:12 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1,303 kB] 2024-01-24T02:42:47.092 INFO:teuthology.orchestra.run.smithi195.stdout:Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main Translation-en [554 kB] 2024-01-24T02:42:47.097 INFO:teuthology.orchestra.run.smithi195.stdout:Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/restricted i386 Packages [39.7 kB] 2024-01-24T02:42:47.098 INFO:teuthology.orchestra.run.smithi195.stdout:Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [1,347 kB] 2024-01-24T02:42:47.129 INFO:teuthology.orchestra.run.smithi152.stdout:Get:13 http://security.ubuntu.com/ubuntu bionic-security/universe i386 Packages [1,078 kB] 2024-01-24T02:42:47.131 INFO:teuthology.orchestra.run.smithi195.stdout:Get:12 http://security.ubuntu.com/ubuntu bionic-security/main Translation-en [467 kB] 2024-01-24T02:42:47.145 INFO:teuthology.orchestra.run.smithi195.stdout:Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/restricted Translation-en [187 kB] 2024-01-24T02:42:47.147 INFO:teuthology.orchestra.run.smithi195.stdout:Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,915 kB] 2024-01-24T02:42:47.148 INFO:teuthology.orchestra.run.smithi195.stdout:Get:15 http://security.ubuntu.com/ubuntu bionic-security/restricted i386 Packages [33.0 kB] 2024-01-24T02:42:47.149 INFO:teuthology.orchestra.run.smithi195.stdout:Get:16 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [1,317 kB] 2024-01-24T02:42:47.180 INFO:teuthology.orchestra.run.smithi195.stdout:Get:17 http://security.ubuntu.com/ubuntu bionic-security/restricted Translation-en [182 kB] 2024-01-24T02:42:47.182 INFO:teuthology.orchestra.run.smithi195.stdout:Get:18 http://security.ubuntu.com/ubuntu bionic-security/universe i386 Packages [1,078 kB] 2024-01-24T02:42:47.192 INFO:teuthology.orchestra.run.smithi152.stdout:Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [3,045 kB] 2024-01-24T02:42:47.223 INFO:teuthology.orchestra.run.smithi195.stdout:Get:19 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1,303 kB] 2024-01-24T02:42:47.254 INFO:teuthology.orchestra.run.smithi152.stdout:Get:15 http://security.ubuntu.com/ubuntu bionic-security/universe Translation-en [308 kB] 2024-01-24T02:42:47.258 INFO:teuthology.orchestra.run.smithi195.stdout:Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/universe i386 Packages [1,663 kB] 2024-01-24T02:42:47.258 INFO:teuthology.orchestra.run.smithi195.stdout:Get:21 http://security.ubuntu.com/ubuntu bionic-security/universe Translation-en [308 kB] 2024-01-24T02:42:47.261 INFO:teuthology.orchestra.run.smithi152.stdout:Get:16 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [19.8 kB] 2024-01-24T02:42:47.261 INFO:teuthology.orchestra.run.smithi152.stdout:Get:17 http://security.ubuntu.com/ubuntu bionic-security/multiverse i386 Packages [6,008 B] 2024-01-24T02:42:47.262 INFO:teuthology.orchestra.run.smithi152.stdout:Get:18 http://security.ubuntu.com/ubuntu bionic-security/multiverse Translation-en [3,928 B] 2024-01-24T02:42:47.262 INFO:teuthology.orchestra.run.smithi195.stdout:Get:22 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [19.8 kB] 2024-01-24T02:42:47.291 INFO:teuthology.orchestra.run.smithi195.stdout:Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/universe Translation-en [421 kB] 2024-01-24T02:42:47.297 INFO:teuthology.orchestra.run.smithi195.stdout:Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [25.6 kB] 2024-01-24T02:42:47.297 INFO:teuthology.orchestra.run.smithi195.stdout:Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse i386 Packages [11.2 kB] 2024-01-24T02:42:47.297 INFO:teuthology.orchestra.run.smithi195.stdout:Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Translation-en [6,088 B] 2024-01-24T02:42:47.297 INFO:teuthology.orchestra.run.smithi195.stdout:Get:27 http://archive.ubuntu.com/ubuntu bionic-backports/main i386 Packages [53.2 kB] 2024-01-24T02:42:47.298 INFO:teuthology.orchestra.run.smithi195.stdout:Get:28 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [53.3 kB] 2024-01-24T02:42:47.299 INFO:teuthology.orchestra.run.smithi195.stdout:Get:29 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [18.2 kB] 2024-01-24T02:42:47.299 INFO:teuthology.orchestra.run.smithi195.stdout:Get:30 http://archive.ubuntu.com/ubuntu bionic-backports/universe i386 Packages [18.1 kB] 2024-01-24T02:42:47.426 INFO:teuthology.orchestra.run.smithi195.stdout:Get:31 http://security.ubuntu.com/ubuntu bionic-security/multiverse i386 Packages [6,008 B] 2024-01-24T02:42:47.428 INFO:teuthology.orchestra.run.smithi152.stdout:Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main Translation-en [554 kB] 2024-01-24T02:42:47.466 INFO:teuthology.orchestra.run.smithi152.stdout:Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/restricted i386 Packages [39.7 kB] 2024-01-24T02:42:47.467 INFO:teuthology.orchestra.run.smithi152.stdout:Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [1,347 kB] 2024-01-24T02:42:47.509 INFO:teuthology.orchestra.run.smithi195.stdout:Get:32 http://security.ubuntu.com/ubuntu bionic-security/multiverse Translation-en [3,928 B] 2024-01-24T02:42:47.559 INFO:teuthology.orchestra.run.smithi152.stdout:Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/restricted Translation-en [187 kB] 2024-01-24T02:42:47.572 INFO:teuthology.orchestra.run.smithi152.stdout:Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,915 kB] 2024-01-24T02:42:47.690 INFO:teuthology.orchestra.run.smithi152.stdout:Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/universe i386 Packages [1,663 kB] 2024-01-24T02:42:47.794 INFO:teuthology.orchestra.run.smithi152.stdout:Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/universe Translation-en [421 kB] 2024-01-24T02:42:47.823 INFO:teuthology.orchestra.run.smithi152.stdout:Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [25.6 kB] 2024-01-24T02:42:47.824 INFO:teuthology.orchestra.run.smithi152.stdout:Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse i386 Packages [11.2 kB] 2024-01-24T02:42:47.824 INFO:teuthology.orchestra.run.smithi152.stdout:Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Translation-en [6,088 B] 2024-01-24T02:42:47.824 INFO:teuthology.orchestra.run.smithi152.stdout:Get:29 http://archive.ubuntu.com/ubuntu bionic-backports/main i386 Packages [53.2 kB] 2024-01-24T02:42:47.832 INFO:teuthology.orchestra.run.smithi152.stdout:Get:30 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [53.3 kB] 2024-01-24T02:42:47.838 INFO:teuthology.orchestra.run.smithi152.stdout:Get:31 http://archive.ubuntu.com/ubuntu bionic-backports/universe i386 Packages [18.1 kB] 2024-01-24T02:42:47.843 INFO:teuthology.orchestra.run.smithi152.stdout:Get:32 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [18.2 kB] 2024-01-24T02:42:49.670 INFO:teuthology.orchestra.run.smithi152.stdout:Fetched 20.1 MB in 4s (5,568 kB/s) 2024-01-24T02:42:49.679 INFO:teuthology.orchestra.run.smithi195.stdout:Fetched 20.1 MB in 4s (5,510 kB/s) 2024-01-24T02:42:51.383 INFO:teuthology.orchestra.run.smithi195.stdout:Reading package lists... 2024-01-24T02:42:51.435 DEBUG:teuthology.orchestra.run.smithi195:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-01-24T02:42:51.456 INFO:teuthology.orchestra.run.smithi152.stdout:Reading package lists... 2024-01-24T02:42:51.508 DEBUG:teuthology.orchestra.run.smithi152:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-01-24T02:42:51.523 INFO:teuthology.orchestra.run.smithi195.stdout:Reading package lists... 2024-01-24T02:42:51.592 INFO:teuthology.orchestra.run.smithi152.stdout:Reading package lists... 2024-01-24T02:42:51.818 INFO:teuthology.orchestra.run.smithi195.stdout:Building dependency tree... 2024-01-24T02:42:51.819 INFO:teuthology.orchestra.run.smithi195.stdout:Reading state information... 2024-01-24T02:42:51.860 INFO:teuthology.orchestra.run.smithi152.stdout:Building dependency tree... 2024-01-24T02:42:51.860 INFO:teuthology.orchestra.run.smithi152.stdout:Reading state information... 2024-01-24T02:42:52.038 INFO:teuthology.orchestra.run.smithi195.stdout:The following additional packages will be installed: 2024-01-24T02:42:52.039 INFO:teuthology.orchestra.run.smithi195.stdout: linux-generic linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-01-24T02:42:52.039 INFO:teuthology.orchestra.run.smithi195.stdout: linux-headers-generic linux-image-4.15.0-213-generic 2024-01-24T02:42:52.039 INFO:teuthology.orchestra.run.smithi195.stdout: linux-modules-4.15.0-213-generic linux-modules-extra-4.15.0-213-generic 2024-01-24T02:42:52.041 INFO:teuthology.orchestra.run.smithi195.stdout:Suggested packages: 2024-01-24T02:42:52.041 INFO:teuthology.orchestra.run.smithi195.stdout: fdutils linux-doc-4.15.0 | linux-source-4.15.0 linux-tools 2024-01-24T02:42:52.041 INFO:teuthology.orchestra.run.smithi195.stdout:Recommended packages: 2024-01-24T02:42:52.041 INFO:teuthology.orchestra.run.smithi195.stdout: thermald 2024-01-24T02:42:52.078 INFO:teuthology.orchestra.run.smithi152.stdout:The following additional packages will be installed: 2024-01-24T02:42:52.078 INFO:teuthology.orchestra.run.smithi152.stdout: linux-generic linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-01-24T02:42:52.078 INFO:teuthology.orchestra.run.smithi152.stdout: linux-headers-generic linux-image-4.15.0-213-generic 2024-01-24T02:42:52.079 INFO:teuthology.orchestra.run.smithi152.stdout: linux-modules-4.15.0-213-generic linux-modules-extra-4.15.0-213-generic 2024-01-24T02:42:52.081 INFO:teuthology.orchestra.run.smithi152.stdout:Suggested packages: 2024-01-24T02:42:52.081 INFO:teuthology.orchestra.run.smithi152.stdout: fdutils linux-doc-4.15.0 | linux-source-4.15.0 linux-tools 2024-01-24T02:42:52.081 INFO:teuthology.orchestra.run.smithi152.stdout:Recommended packages: 2024-01-24T02:42:52.081 INFO:teuthology.orchestra.run.smithi152.stdout: thermald 2024-01-24T02:42:52.099 INFO:teuthology.orchestra.run.smithi195.stdout:The following NEW packages will be installed: 2024-01-24T02:42:52.099 INFO:teuthology.orchestra.run.smithi195.stdout: linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-01-24T02:42:52.099 INFO:teuthology.orchestra.run.smithi195.stdout: linux-image-4.15.0-213-generic linux-modules-4.15.0-213-generic 2024-01-24T02:42:52.099 INFO:teuthology.orchestra.run.smithi195.stdout: linux-modules-extra-4.15.0-213-generic 2024-01-24T02:42:52.101 INFO:teuthology.orchestra.run.smithi195.stdout:The following packages will be upgraded: 2024-01-24T02:42:52.102 INFO:teuthology.orchestra.run.smithi195.stdout: linux-generic linux-headers-generic linux-image-generic 2024-01-24T02:42:52.146 INFO:teuthology.orchestra.run.smithi152.stdout:The following NEW packages will be installed: 2024-01-24T02:42:52.146 INFO:teuthology.orchestra.run.smithi152.stdout: linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-01-24T02:42:52.146 INFO:teuthology.orchestra.run.smithi152.stdout: linux-image-4.15.0-213-generic linux-modules-4.15.0-213-generic 2024-01-24T02:42:52.146 INFO:teuthology.orchestra.run.smithi152.stdout: linux-modules-extra-4.15.0-213-generic 2024-01-24T02:42:52.148 INFO:teuthology.orchestra.run.smithi152.stdout:The following packages will be upgraded: 2024-01-24T02:42:52.149 INFO:teuthology.orchestra.run.smithi152.stdout: linux-generic linux-headers-generic linux-image-generic 2024-01-24T02:42:52.224 INFO:teuthology.orchestra.run.smithi195.stdout:3 upgraded, 5 newly installed, 0 to remove and 165 not upgraded. 2024-01-24T02:42:52.224 INFO:teuthology.orchestra.run.smithi195.stdout:Need to get 67.4 MB of archives. 2024-01-24T02:42:52.224 INFO:teuthology.orchestra.run.smithi195.stdout:After this operation, 351 MB of additional disk space will be used. 2024-01-24T02:42:52.224 INFO:teuthology.orchestra.run.smithi195.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-24T02:42:52.334 INFO:teuthology.orchestra.run.smithi152.stdout:3 upgraded, 5 newly installed, 0 to remove and 165 not upgraded. 2024-01-24T02:42:52.334 INFO:teuthology.orchestra.run.smithi152.stdout:Need to get 67.4 MB of archives. 2024-01-24T02:42:52.334 INFO:teuthology.orchestra.run.smithi152.stdout:After this operation, 351 MB of additional disk space will be used. 2024-01-24T02:42:52.334 INFO:teuthology.orchestra.run.smithi152.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-24T02:42:52.820 INFO:teuthology.orchestra.run.smithi195.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-24T02:42:53.030 INFO:teuthology.orchestra.run.smithi195.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-24T02:42:53.376 INFO:teuthology.orchestra.run.smithi152.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-24T02:42:53.581 INFO:teuthology.orchestra.run.smithi152.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-24T02:42:53.785 INFO:teuthology.orchestra.run.smithi195.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-24T02:42:53.785 INFO:teuthology.orchestra.run.smithi195.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-24T02:42:53.785 INFO:teuthology.orchestra.run.smithi195.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-24T02:42:53.997 INFO:teuthology.orchestra.run.smithi195.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-24T02:42:54.015 INFO:teuthology.orchestra.run.smithi195.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-24T02:42:54.698 INFO:teuthology.orchestra.run.smithi195.stdout:Fetched 67.4 MB in 2s (35.5 MB/s) 2024-01-24T02:42:54.698 INFO:teuthology.orchestra.run.smithi152.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-24T02:42:54.699 INFO:teuthology.orchestra.run.smithi152.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-24T02:42:54.699 INFO:teuthology.orchestra.run.smithi152.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-24T02:42:54.877 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-modules-4.15.0-213-generic. 2024-01-24T02:42:54.994 INFO:teuthology.orchestra.run.smithi152.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-24T02:42:55.025 INFO:teuthology.orchestra.run.smithi152.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-24T02:42:55.738 INFO:teuthology.orchestra.run.smithi152.stdout:Fetched 67.4 MB in 3s (23.6 MB/s) 2024-01-24T02:42:55.850 INFO:teuthology.orchestra.run.smithi195.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-24T02:42:55.854 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../0-linux-modules-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-24T02:42:55.924 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:42:55.933 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package linux-modules-4.15.0-213-generic. 2024-01-24T02:42:56.859 INFO:teuthology.orchestra.run.smithi152.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-24T02:42:56.864 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../0-linux-modules-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-24T02:42:56.955 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:42:57.658 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-image-4.15.0-213-generic. 2024-01-24T02:42:57.674 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../1-linux-image-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-24T02:42:57.783 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:42:58.311 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-modules-extra-4.15.0-213-generic. 2024-01-24T02:42:58.324 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../2-linux-modules-extra-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-24T02:42:58.352 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:42:58.758 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package linux-image-4.15.0-213-generic. 2024-01-24T02:42:58.774 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../1-linux-image-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-24T02:42:58.878 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:42:59.386 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package linux-modules-extra-4.15.0-213-generic. 2024-01-24T02:42:59.400 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../2-linux-modules-extra-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-24T02:42:59.445 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:43:02.246 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../3-linux-generic_4.15.0.213.196_amd64.deb ... 2024-01-24T02:43:02.388 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-24T02:43:02.675 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../4-linux-image-generic_4.15.0.213.196_amd64.deb ... 2024-01-24T02:43:02.801 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-image-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-24T02:43:03.129 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-headers-4.15.0-213. 2024-01-24T02:43:03.145 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../5-linux-headers-4.15.0-213_4.15.0-213.224_all.deb ... 2024-01-24T02:43:03.204 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-01-24T02:43:03.431 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../3-linux-generic_4.15.0.213.196_amd64.deb ... 2024-01-24T02:43:03.555 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-24T02:43:03.899 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../4-linux-image-generic_4.15.0.213.196_amd64.deb ... 2024-01-24T02:43:04.026 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-image-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-24T02:43:04.362 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package linux-headers-4.15.0-213. 2024-01-24T02:43:04.379 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../5-linux-headers-4.15.0-213_4.15.0-213.224_all.deb ... 2024-01-24T02:43:04.420 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-01-24T02:43:07.890 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-headers-4.15.0-213-generic. 2024-01-24T02:43:07.914 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../6-linux-headers-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-24T02:43:07.948 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:43:09.403 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package linux-headers-4.15.0-213-generic. 2024-01-24T02:43:09.427 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../6-linux-headers-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-24T02:43:09.469 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:43:10.390 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../7-linux-headers-generic_4.15.0.213.196_amd64.deb ... 2024-01-24T02:43:10.525 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-headers-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-24T02:43:10.857 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:43:11.447 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:43:11.936 INFO:teuthology.orchestra.run.smithi195.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-4.15.0-200-generic 2024-01-24T02:43:11.936 INFO:teuthology.orchestra.run.smithi195.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-4.15.0-200-generic 2024-01-24T02:43:11.936 INFO:teuthology.orchestra.run.smithi195.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-4.15.0-213-generic 2024-01-24T02:43:11.936 INFO:teuthology.orchestra.run.smithi195.stdout:I: /initrd.img is now a symlink to boot/initrd.img-4.15.0-213-generic 2024-01-24T02:43:11.983 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../7-linux-headers-generic_4.15.0.213.196_amd64.deb ... 2024-01-24T02:43:12.074 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:43:12.110 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-headers-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-24T02:43:12.431 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:43:12.634 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-01-24T02:43:12.760 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-image-generic (4.15.0.213.196) ... 2024-01-24T02:43:12.902 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:43:13.062 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-headers-generic (4.15.0.213.196) ... 2024-01-24T02:43:13.197 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-generic (4.15.0.213.196) ... 2024-01-24T02:43:13.284 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:43:13.323 INFO:teuthology.orchestra.run.smithi195.stdout:Processing triggers for linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:43:13.533 INFO:teuthology.orchestra.run.smithi195.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-01-24T02:43:13.533 INFO:teuthology.orchestra.run.smithi195.stdout:update-initramfs: Generating /boot/initrd.img-4.15.0-213-generic 2024-01-24T02:43:13.760 INFO:teuthology.orchestra.run.smithi152.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-4.15.0-200-generic 2024-01-24T02:43:13.760 INFO:teuthology.orchestra.run.smithi152.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-4.15.0-200-generic 2024-01-24T02:43:13.760 INFO:teuthology.orchestra.run.smithi152.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-4.15.0-213-generic 2024-01-24T02:43:13.761 INFO:teuthology.orchestra.run.smithi152.stdout:I: /initrd.img is now a symlink to boot/initrd.img-4.15.0-213-generic 2024-01-24T02:43:13.886 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:43:14.404 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-01-24T02:43:14.546 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-image-generic (4.15.0.213.196) ... 2024-01-24T02:43:14.672 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:43:14.798 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-headers-generic (4.15.0.213.196) ... 2024-01-24T02:43:14.949 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-generic (4.15.0.213.196) ... 2024-01-24T02:43:15.084 INFO:teuthology.orchestra.run.smithi152.stdout:Processing triggers for linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-24T02:43:15.300 INFO:teuthology.orchestra.run.smithi152.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-01-24T02:43:15.301 INFO:teuthology.orchestra.run.smithi152.stdout:update-initramfs: Generating /boot/initrd.img-4.15.0-213-generic 2024-01-24T02:43:28.939 INFO:teuthology.orchestra.run.smithi195.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-01-24T02:43:28.940 INFO:teuthology.orchestra.run.smithi195.stdout:Sourcing file `/etc/default/grub' 2024-01-24T02:43:28.981 INFO:teuthology.orchestra.run.smithi195.stdout:Generating grub configuration file ... 2024-01-24T02:43:29.350 INFO:teuthology.orchestra.run.smithi195.stdout:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-01-24T02:43:29.396 INFO:teuthology.orchestra.run.smithi195.stdout:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-01-24T02:43:29.732 INFO:teuthology.orchestra.run.smithi195.stdout:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-01-24T02:43:29.768 INFO:teuthology.orchestra.run.smithi195.stdout:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-01-24T02:43:29.843 INFO:teuthology.orchestra.run.smithi195.stdout:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-01-24T02:43:29.866 INFO:teuthology.orchestra.run.smithi195.stdout:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-01-24T02:43:31.463 INFO:teuthology.orchestra.run.smithi195.stdout:done 2024-01-24T02:43:31.901 DEBUG:teuthology.orchestra.run.smithi195:> dpkg -s linux-image-generic 2024-01-24T02:43:31.923 INFO:teuthology.orchestra.run.smithi195.stdout:Package: linux-image-generic 2024-01-24T02:43:31.923 INFO:teuthology.orchestra.run.smithi195.stdout:Status: install ok installed 2024-01-24T02:43:31.923 INFO:teuthology.orchestra.run.smithi195.stdout:Priority: optional 2024-01-24T02:43:31.924 INFO:teuthology.orchestra.run.smithi195.stdout:Section: kernel 2024-01-24T02:43:31.924 INFO:teuthology.orchestra.run.smithi195.stdout:Installed-Size: 18 2024-01-24T02:43:31.924 INFO:teuthology.orchestra.run.smithi195.stdout:Maintainer: Ubuntu Kernel Team 2024-01-24T02:43:31.924 INFO:teuthology.orchestra.run.smithi195.stdout:Architecture: amd64 2024-01-24T02:43:31.924 INFO:teuthology.orchestra.run.smithi195.stdout:Source: linux-meta 2024-01-24T02:43:31.924 INFO:teuthology.orchestra.run.smithi195.stdout:Version: 4.15.0.213.196 2024-01-24T02:43:31.924 INFO:teuthology.orchestra.run.smithi195.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-01-24T02:43:31.924 INFO:teuthology.orchestra.run.smithi195.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-24T02:43:31.924 INFO:teuthology.orchestra.run.smithi195.stdout:Recommends: thermald 2024-01-24T02:43:31.924 INFO:teuthology.orchestra.run.smithi195.stdout:Description: Generic Linux kernel image 2024-01-24T02:43:31.924 INFO:teuthology.orchestra.run.smithi195.stdout: This package will always depend on the latest generic kernel image 2024-01-24T02:43:31.924 INFO:teuthology.orchestra.run.smithi195.stdout: available. 2024-01-24T02:43:31.925 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.15.0-200-generic Expected: 4.15.0-213-generic 2024-01-24T02:43:31.925 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-01-24T02:43:31.925 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-01-24T02:43:31.925 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-01-24T02:43:31.925 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi195.front.sepia.ceph.com, path=None, version=distro) 2024-01-24T02:43:31.925 DEBUG:teuthology.orchestra.run.smithi195:> sudo apt-get clean 2024-01-24T02:43:32.028 DEBUG:teuthology.orchestra.run.smithi195:> sudo apt-get update 2024-01-24T02:43:32.170 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-01-24T02:43:32.170 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease 2024-01-24T02:43:32.178 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 2024-01-24T02:43:32.198 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 2024-01-24T02:43:32.255 INFO:teuthology.orchestra.run.smithi152.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-01-24T02:43:32.255 INFO:teuthology.orchestra.run.smithi152.stdout:Sourcing file `/etc/default/grub' 2024-01-24T02:43:32.329 INFO:teuthology.orchestra.run.smithi152.stdout:Generating grub configuration file ... 2024-01-24T02:43:32.802 INFO:teuthology.orchestra.run.smithi152.stdout:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-01-24T02:43:32.850 INFO:teuthology.orchestra.run.smithi152.stdout:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-01-24T02:43:33.299 INFO:teuthology.orchestra.run.smithi152.stdout:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-01-24T02:43:33.328 INFO:teuthology.orchestra.run.smithi152.stdout:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-01-24T02:43:33.401 INFO:teuthology.orchestra.run.smithi152.stdout:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-01-24T02:43:33.441 INFO:teuthology.orchestra.run.smithi152.stdout:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-01-24T02:43:34.266 INFO:teuthology.orchestra.run.smithi195.stdout:Reading package lists... 2024-01-24T02:43:34.319 DEBUG:teuthology.orchestra.run.smithi195:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-01-24T02:43:34.398 INFO:teuthology.orchestra.run.smithi195.stdout:Reading package lists... 2024-01-24T02:43:34.665 INFO:teuthology.orchestra.run.smithi195.stdout:Building dependency tree... 2024-01-24T02:43:34.666 INFO:teuthology.orchestra.run.smithi195.stdout:Reading state information... 2024-01-24T02:43:34.874 INFO:teuthology.orchestra.run.smithi195.stdout:linux-image-generic is already the newest version (4.15.0.213.196). 2024-01-24T02:43:34.875 INFO:teuthology.orchestra.run.smithi195.stdout:The following packages were automatically installed and are no longer required: 2024-01-24T02:43:34.875 INFO:teuthology.orchestra.run.smithi195.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-01-24T02:43:34.875 INFO:teuthology.orchestra.run.smithi195.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-01-24T02:43:34.875 INFO:teuthology.orchestra.run.smithi195.stdout: linux-modules-extra-4.15.0-194-generic 2024-01-24T02:43:34.875 INFO:teuthology.orchestra.run.smithi195.stdout:Use 'sudo apt autoremove' to remove them. 2024-01-24T02:43:34.929 INFO:teuthology.orchestra.run.smithi195.stdout:0 upgraded, 0 newly installed, 0 to remove and 165 not upgraded. 2024-01-24T02:43:34.931 DEBUG:teuthology.orchestra.run.smithi195:> dpkg -s linux-image-generic 2024-01-24T02:43:34.952 INFO:teuthology.orchestra.run.smithi195.stdout:Package: linux-image-generic 2024-01-24T02:43:34.952 INFO:teuthology.orchestra.run.smithi195.stdout:Status: install ok installed 2024-01-24T02:43:34.952 INFO:teuthology.orchestra.run.smithi195.stdout:Priority: optional 2024-01-24T02:43:34.952 INFO:teuthology.orchestra.run.smithi195.stdout:Section: kernel 2024-01-24T02:43:34.952 INFO:teuthology.orchestra.run.smithi195.stdout:Installed-Size: 18 2024-01-24T02:43:34.953 INFO:teuthology.orchestra.run.smithi195.stdout:Maintainer: Ubuntu Kernel Team 2024-01-24T02:43:34.953 INFO:teuthology.orchestra.run.smithi195.stdout:Architecture: amd64 2024-01-24T02:43:34.953 INFO:teuthology.orchestra.run.smithi195.stdout:Source: linux-meta 2024-01-24T02:43:34.953 INFO:teuthology.orchestra.run.smithi195.stdout:Version: 4.15.0.213.196 2024-01-24T02:43:34.953 INFO:teuthology.orchestra.run.smithi195.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-01-24T02:43:34.953 INFO:teuthology.orchestra.run.smithi195.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-24T02:43:34.953 INFO:teuthology.orchestra.run.smithi195.stdout:Recommends: thermald 2024-01-24T02:43:34.953 INFO:teuthology.orchestra.run.smithi195.stdout:Description: Generic Linux kernel image 2024-01-24T02:43:34.953 INFO:teuthology.orchestra.run.smithi195.stdout: This package will always depend on the latest generic kernel image 2024-01-24T02:43:34.953 INFO:teuthology.orchestra.run.smithi195.stdout: available. 2024-01-24T02:43:34.954 DEBUG:teuthology.orchestra.run.smithi195:> mktemp 2024-01-24T02:43:34.999 INFO:teuthology.orchestra.run.smithi195.stdout:/tmp/tmp.27X6bBdu9q 2024-01-24T02:43:34.999 DEBUG:teuthology.orchestra.run.smithi195:> sudo cp /boot/grub/grub.cfg /tmp/tmp.27X6bBdu9q 2024-01-24T02:43:35.072 DEBUG:teuthology.orchestra.run.smithi195:> sudo chmod 0666 /tmp/tmp.27X6bBdu9q 2024-01-24T02:43:35.157 INFO:teuthology.orchestra.run.smithi152.stdout:done 2024-01-24T02:43:35.214 DEBUG:teuthology.orchestra.remote:smithi195:/tmp/tmp.27X6bBdu9q is 10KB 2024-01-24T02:43:35.225 DEBUG:teuthology.orchestra.run.smithi195:> rm -fr /tmp/tmp.27X6bBdu9q 2024-01-24T02:43:35.232 DEBUG:teuthology.orchestra.run.smithi195:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-01-24T02:43:35.294 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-01-24T02:43:35.294 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-01-24T02:43:35.294 DEBUG:teuthology.orchestra.run.smithi195:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-01-24T02:43:35.371 INFO:teuthology.task.kernel:Distro Kernel Version: 4.15.0-213-generic 2024-01-24T02:43:35.372 DEBUG:teuthology.orchestra.run.smithi195:> sudo update-grub 2024-01-24T02:43:35.636 DEBUG:teuthology.orchestra.run.smithi152:> dpkg -s linux-image-generic 2024-01-24T02:43:35.658 INFO:teuthology.orchestra.run.smithi152.stdout:Package: linux-image-generic 2024-01-24T02:43:35.658 INFO:teuthology.orchestra.run.smithi152.stdout:Status: install ok installed 2024-01-24T02:43:35.658 INFO:teuthology.orchestra.run.smithi152.stdout:Priority: optional 2024-01-24T02:43:35.658 INFO:teuthology.orchestra.run.smithi152.stdout:Section: kernel 2024-01-24T02:43:35.658 INFO:teuthology.orchestra.run.smithi152.stdout:Installed-Size: 18 2024-01-24T02:43:35.658 INFO:teuthology.orchestra.run.smithi152.stdout:Maintainer: Ubuntu Kernel Team 2024-01-24T02:43:35.658 INFO:teuthology.orchestra.run.smithi152.stdout:Architecture: amd64 2024-01-24T02:43:35.658 INFO:teuthology.orchestra.run.smithi152.stdout:Source: linux-meta 2024-01-24T02:43:35.658 INFO:teuthology.orchestra.run.smithi152.stdout:Version: 4.15.0.213.196 2024-01-24T02:43:35.658 INFO:teuthology.orchestra.run.smithi152.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-01-24T02:43:35.658 INFO:teuthology.orchestra.run.smithi152.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-24T02:43:35.658 INFO:teuthology.orchestra.run.smithi152.stdout:Recommends: thermald 2024-01-24T02:43:35.658 INFO:teuthology.orchestra.run.smithi152.stdout:Description: Generic Linux kernel image 2024-01-24T02:43:35.659 INFO:teuthology.orchestra.run.smithi152.stdout: This package will always depend on the latest generic kernel image 2024-01-24T02:43:35.659 INFO:teuthology.orchestra.run.smithi152.stdout: available. 2024-01-24T02:43:35.659 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.15.0-200-generic Expected: 4.15.0-213-generic 2024-01-24T02:43:35.659 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-01-24T02:43:35.659 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-01-24T02:43:35.659 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-01-24T02:43:35.659 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi152.front.sepia.ceph.com, path=None, version=distro) 2024-01-24T02:43:35.659 DEBUG:teuthology.orchestra.run.smithi152:> sudo apt-get clean 2024-01-24T02:43:35.775 DEBUG:teuthology.orchestra.run.smithi152:> sudo apt-get update 2024-01-24T02:43:35.905 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:1 http://security.ubuntu.com/ubuntu bionic-security InRelease 2024-01-24T02:43:36.012 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-01-24T02:43:36.094 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 2024-01-24T02:43:36.175 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 2024-01-24T02:43:36.892 INFO:teuthology.orchestra.run.smithi195.stderr:Sourcing file `/etc/default/grub' 2024-01-24T02:43:36.907 INFO:teuthology.orchestra.run.smithi195.stderr:Generating grub configuration file ... 2024-01-24T02:43:37.143 INFO:teuthology.orchestra.run.smithi195.stderr:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-01-24T02:43:37.156 INFO:teuthology.orchestra.run.smithi195.stderr:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-01-24T02:43:37.470 INFO:teuthology.orchestra.run.smithi195.stderr:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-01-24T02:43:37.483 INFO:teuthology.orchestra.run.smithi195.stderr:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-01-24T02:43:37.559 INFO:teuthology.orchestra.run.smithi195.stderr:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-01-24T02:43:37.572 INFO:teuthology.orchestra.run.smithi195.stderr:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-01-24T02:43:38.012 INFO:teuthology.orchestra.run.smithi152.stdout:Reading package lists... 2024-01-24T02:43:38.065 DEBUG:teuthology.orchestra.run.smithi152:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-01-24T02:43:38.142 INFO:teuthology.orchestra.run.smithi152.stdout:Reading package lists... 2024-01-24T02:43:38.406 INFO:teuthology.orchestra.run.smithi152.stdout:Building dependency tree... 2024-01-24T02:43:38.406 INFO:teuthology.orchestra.run.smithi152.stdout:Reading state information... 2024-01-24T02:43:38.616 INFO:teuthology.orchestra.run.smithi152.stdout:linux-image-generic is already the newest version (4.15.0.213.196). 2024-01-24T02:43:38.616 INFO:teuthology.orchestra.run.smithi152.stdout:The following packages were automatically installed and are no longer required: 2024-01-24T02:43:38.616 INFO:teuthology.orchestra.run.smithi152.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-01-24T02:43:38.616 INFO:teuthology.orchestra.run.smithi152.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-01-24T02:43:38.617 INFO:teuthology.orchestra.run.smithi152.stdout: linux-modules-extra-4.15.0-194-generic 2024-01-24T02:43:38.617 INFO:teuthology.orchestra.run.smithi152.stdout:Use 'sudo apt autoremove' to remove them. 2024-01-24T02:43:38.673 INFO:teuthology.orchestra.run.smithi152.stdout:0 upgraded, 0 newly installed, 0 to remove and 165 not upgraded. 2024-01-24T02:43:38.675 DEBUG:teuthology.orchestra.run.smithi152:> dpkg -s linux-image-generic 2024-01-24T02:43:38.697 INFO:teuthology.orchestra.run.smithi152.stdout:Package: linux-image-generic 2024-01-24T02:43:38.697 INFO:teuthology.orchestra.run.smithi152.stdout:Status: install ok installed 2024-01-24T02:43:38.697 INFO:teuthology.orchestra.run.smithi152.stdout:Priority: optional 2024-01-24T02:43:38.697 INFO:teuthology.orchestra.run.smithi152.stdout:Section: kernel 2024-01-24T02:43:38.697 INFO:teuthology.orchestra.run.smithi152.stdout:Installed-Size: 18 2024-01-24T02:43:38.697 INFO:teuthology.orchestra.run.smithi152.stdout:Maintainer: Ubuntu Kernel Team 2024-01-24T02:43:38.697 INFO:teuthology.orchestra.run.smithi152.stdout:Architecture: amd64 2024-01-24T02:43:38.697 INFO:teuthology.orchestra.run.smithi152.stdout:Source: linux-meta 2024-01-24T02:43:38.698 INFO:teuthology.orchestra.run.smithi152.stdout:Version: 4.15.0.213.196 2024-01-24T02:43:38.698 INFO:teuthology.orchestra.run.smithi152.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-01-24T02:43:38.698 INFO:teuthology.orchestra.run.smithi152.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-24T02:43:38.698 INFO:teuthology.orchestra.run.smithi152.stdout:Recommends: thermald 2024-01-24T02:43:38.698 INFO:teuthology.orchestra.run.smithi152.stdout:Description: Generic Linux kernel image 2024-01-24T02:43:38.698 INFO:teuthology.orchestra.run.smithi152.stdout: This package will always depend on the latest generic kernel image 2024-01-24T02:43:38.698 INFO:teuthology.orchestra.run.smithi152.stdout: available. 2024-01-24T02:43:38.698 DEBUG:teuthology.orchestra.run.smithi152:> mktemp 2024-01-24T02:43:38.745 INFO:teuthology.orchestra.run.smithi152.stdout:/tmp/tmp.25mAwsQQyV 2024-01-24T02:43:38.746 DEBUG:teuthology.orchestra.run.smithi152:> sudo cp /boot/grub/grub.cfg /tmp/tmp.25mAwsQQyV 2024-01-24T02:43:38.821 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod 0666 /tmp/tmp.25mAwsQQyV 2024-01-24T02:43:38.850 INFO:teuthology.orchestra.run.smithi195.stderr:done 2024-01-24T02:43:38.851 DEBUG:teuthology.orchestra.run.smithi195:> sudo shutdown -r now 2024-01-24T02:43:38.963 DEBUG:teuthology.orchestra.remote:smithi152:/tmp/tmp.25mAwsQQyV is 10KB 2024-01-24T02:43:38.975 DEBUG:teuthology.orchestra.run.smithi152:> rm -fr /tmp/tmp.25mAwsQQyV 2024-01-24T02:43:38.981 DEBUG:teuthology.orchestra.run.smithi152:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-01-24T02:43:39.041 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:43:39.041 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-01-24T02:43:39.041 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-01-24T02:43:39.119 INFO:teuthology.task.kernel:Distro Kernel Version: 4.15.0-213-generic 2024-01-24T02:43:39.119 DEBUG:teuthology.orchestra.run.smithi152:> sudo update-grub 2024-01-24T02:43:40.735 INFO:teuthology.orchestra.run.smithi152.stderr:Sourcing file `/etc/default/grub' 2024-01-24T02:43:40.746 INFO:teuthology.orchestra.run.smithi152.stderr:Generating grub configuration file ... 2024-01-24T02:43:41.006 INFO:teuthology.orchestra.run.smithi152.stderr:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-01-24T02:43:41.018 INFO:teuthology.orchestra.run.smithi152.stderr:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-01-24T02:43:41.382 INFO:teuthology.orchestra.run.smithi152.stderr:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-01-24T02:43:41.395 INFO:teuthology.orchestra.run.smithi152.stderr:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-01-24T02:43:41.471 INFO:teuthology.orchestra.run.smithi152.stderr:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-01-24T02:43:41.484 INFO:teuthology.orchestra.run.smithi152.stderr:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-01-24T02:43:42.859 INFO:teuthology.orchestra.run.smithi152.stderr:done 2024-01-24T02:43:42.861 DEBUG:teuthology.orchestra.run.smithi152:> sudo shutdown -r now 2024-01-24T02:44:08.880 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-01-24T02:44:08.881 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-01-24T02:44:08.881 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi195.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-24T02:44:12.868 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-01-24T02:44:12.868 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-01-24T02:44:12.868 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-24T02:44:47.552 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.152 2024-01-24T02:44:56.560 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-01-24T02:44:56.561 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-24T02:45:08.892 DEBUG:teuthology.orchestra.remote:timed out 2024-01-24T02:45:14.944 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.152 2024-01-24T02:45:17.895 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-01-24T02:45:17.896 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi195.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-24T02:45:18.063 DEBUG:teuthology.orchestra.run.smithi195:> true 2024-01-24T02:45:18.635 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-01-24T02:45:18.635 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "4.15.0-213-generic"... 2024-01-24T02:45:18.635 DEBUG:teuthology.orchestra.run.smithi195:> uname -r 2024-01-24T02:45:18.679 INFO:teuthology.orchestra.run.smithi195.stdout:4.15.0-213-generic 2024-01-24T02:45:18.680 DEBUG:teuthology.task.kernel:current kernel version is 4.15.0-213-generic vs 4.15.0-213-generic 2024-01-24T02:45:18.680 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-01-24T02:45:18.680 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-01-24T02:45:19.680 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-01-24T02:45:19.680 DEBUG:teuthology.orchestra.run.smithi195:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-01-24T02:45:19.718 INFO:teuthology.orchestra.run.smithi195.stdout:ttyS1 2024-01-24T02:45:19.747 DEBUG:teuthology.parallel:result is None 2024-01-24T02:45:26.945 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-01-24T02:45:26.945 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-24T02:45:27.028 ERROR:teuthology.orchestra.connection:Error authenticating with smithi152.front.sepia.ceph.com: SSHException('No existing session') (No SSH private key found!) Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/orchestra/connection.py", line 106, in connect ssh.connect(**connect_args) File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/virtualenv/lib/python3.8/site-packages/paramiko/client.py", line 485, in connect self._auth( File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/virtualenv/lib/python3.8/site-packages/paramiko/client.py", line 818, in _auth raise saved_exception File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/virtualenv/lib/python3.8/site-packages/paramiko/client.py", line 794, in _auth self._transport.auth_publickey(username, key) File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/virtualenv/lib/python3.8/site-packages/paramiko/transport.py", line 1664, in auth_publickey raise SSHException("No existing session") paramiko.ssh_exception.SSHException: No existing session 2024-01-24T02:45:31.106 DEBUG:teuthology.orchestra.run.smithi152:> true 2024-01-24T02:45:31.528 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-01-24T02:45:31.529 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "4.15.0-213-generic"... 2024-01-24T02:45:31.529 DEBUG:teuthology.orchestra.run.smithi152:> uname -r 2024-01-24T02:45:31.578 INFO:teuthology.orchestra.run.smithi152.stdout:4.15.0-213-generic 2024-01-24T02:45:31.578 DEBUG:teuthology.task.kernel:current kernel version is 4.15.0-213-generic vs 4.15.0-213-generic 2024-01-24T02:45:31.579 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-01-24T02:45:31.579 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-01-24T02:45:32.579 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-01-24T02:45:32.579 DEBUG:teuthology.orchestra.run.smithi152:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-01-24T02:45:32.606 INFO:teuthology.orchestra.run.smithi152.stdout:ttyS1 2024-01-24T02:45:32.635 DEBUG:teuthology.parallel:result is None 2024-01-24T02:45:32.635 INFO:teuthology.run_tasks:Running task internal.base... 2024-01-24T02:45:32.643 INFO:teuthology.task.internal:Creating test directory... 2024-01-24T02:45:32.643 DEBUG:teuthology.orchestra.run.smithi152:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-01-24T02:45:32.678 DEBUG:teuthology.orchestra.run.smithi195:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-01-24T02:45:32.685 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-01-24T02:45:32.691 INFO:teuthology.run_tasks:Running task internal.archive... 2024-01-24T02:45:32.701 INFO:teuthology.task.internal:Creating archive directory... 2024-01-24T02:45:32.701 DEBUG:teuthology.orchestra.run.smithi152:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-01-24T02:45:32.727 DEBUG:teuthology.orchestra.run.smithi195:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-01-24T02:45:32.753 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-01-24T02:45:32.763 INFO:teuthology.task.internal:Enabling coredump saving... 2024-01-24T02:45:32.763 DEBUG:teuthology.orchestra.run.smithi152:> 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-24T02:45:32.791 DEBUG:teuthology.orchestra.run.smithi195:> 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-24T02:45:32.812 INFO:teuthology.orchestra.run.smithi152.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-24T02:45:32.815 INFO:teuthology.orchestra.run.smithi195.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-24T02:45:32.822 INFO:teuthology.orchestra.run.smithi152.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-24T02:45:32.823 INFO:teuthology.orchestra.run.smithi195.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-24T02:45:32.825 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-01-24T02:45:32.831 INFO:teuthology.task.internal:Configuring sudo... 2024-01-24T02:45:32.832 DEBUG:teuthology.orchestra.run.smithi152:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-01-24T02:45:32.866 DEBUG:teuthology.orchestra.run.smithi195:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-01-24T02:45:32.883 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-01-24T02:45:32.892 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-01-24T02:45:32.892 DEBUG:teuthology.orchestra.run.smithi152:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-01-24T02:45:32.922 DEBUG:teuthology.orchestra.run.smithi195:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-01-24T02:45:32.930 DEBUG:teuthology.orchestra.run.smithi152:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-01-24T02:45:32.975 DEBUG:teuthology.orchestra.run.smithi152:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-01-24T02:45:33.023 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:45:33.023 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-01-24T02:45:33.083 DEBUG:teuthology.orchestra.run.smithi195:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-01-24T02:45:33.091 DEBUG:teuthology.orchestra.run.smithi195:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-01-24T02:45:33.138 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-01-24T02:45:33.139 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-01-24T02:45:33.210 DEBUG:teuthology.orchestra.run.smithi152:> sudo service rsyslog restart 2024-01-24T02:45:33.213 DEBUG:teuthology.orchestra.run.smithi195:> sudo service rsyslog restart 2024-01-24T02:45:33.296 INFO:teuthology.run_tasks:Running task internal.timer... 2024-01-24T02:45:33.304 INFO:teuthology.task.internal:Starting timer... 2024-01-24T02:45:33.305 INFO:teuthology.run_tasks:Running task pcp... 2024-01-24T02:45:33.314 INFO:teuthology.run_tasks:Running task selinux... 2024-01-24T02:45:33.327 DEBUG:teuthology.task.selinux:Excluding smithi152: OS 'ubuntu' does not support SELinux 2024-01-24T02:45:33.327 DEBUG:teuthology.task.selinux:Excluding smithi195: OS 'ubuntu' does not support SELinux 2024-01-24T02:45:33.328 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-01-24T02:45:33.328 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-01-24T02:45:33.328 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-01-24T02:45:33.328 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-01-24T02:45:33.336 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-01-24T02:45:33.341 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-01-24T02:45:33.502 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-01-24T02:45:33.517 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-24T02:45:33.518 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi152.front.sepia.ceph.com,smithi195.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-01-24T02:50:48.167 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi152.front.sepia.ceph.com'), Remote(name='ubuntu@smithi195.front.sepia.ceph.com')] 2024-01-24T02:50:48.168 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-01-24T02:50:48.169 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-24T02:50:48.248 DEBUG:teuthology.orchestra.run.smithi152:> true 2024-01-24T02:50:48.365 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-01-24T02:50:48.365 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-01-24T02:50:48.366 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi195.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-24T02:50:48.452 DEBUG:teuthology.orchestra.run.smithi195:> true 2024-01-24T02:50:48.569 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-01-24T02:50:48.569 INFO:teuthology.run_tasks:Running task clock... 2024-01-24T02:50:48.579 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-01-24T02:50:48.579 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-01-24T02:50:48.579 DEBUG:teuthology.orchestra.run.smithi152:> 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-24T02:50:48.582 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-01-24T02:50:48.582 DEBUG:teuthology.orchestra.run.smithi195:> 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-24T02:50:48.657 INFO:teuthology.orchestra.run.smithi152.stdout:24 Jan 02:50:48 ntpd[14500]: ntpd 4.2.8p10@1.3728-o (1): Starting 2024-01-24T02:50:48.657 INFO:teuthology.orchestra.run.smithi152.stdout:24 Jan 02:50:48 ntpd[14500]: Command line: ntpd -gq 2024-01-24T02:50:48.658 INFO:teuthology.orchestra.run.smithi152.stdout:24 Jan 02:50:48 ntpd[14500]: proto: precision = 0.123 usec (-23) 2024-01-24T02:50:48.658 INFO:teuthology.orchestra.run.smithi152.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-01-24T02:50:48.659 INFO:teuthology.orchestra.run.smithi152.stdout:24 Jan 02:50:48 ntpd[14500]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-01-24T02:50:48.659 INFO:teuthology.orchestra.run.smithi152.stderr:restrict ::: KOD does nothing without LIMITED. 2024-01-24T02:50:48.660 INFO:teuthology.orchestra.run.smithi152.stdout:24 Jan 02:50:48 ntpd[14500]: restrict ::: KOD does nothing without LIMITED. 2024-01-24T02:50:48.660 INFO:teuthology.orchestra.run.smithi152.stdout:24 Jan 02:50:48 ntpd[14500]: Listen and drop on 0 v6wildcard [::]:123 2024-01-24T02:50:48.660 INFO:teuthology.orchestra.run.smithi152.stdout:24 Jan 02:50:48 ntpd[14500]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-01-24T02:50:48.660 INFO:teuthology.orchestra.run.smithi152.stdout:24 Jan 02:50:48 ntpd[14500]: Listen normally on 2 lo 127.0.0.1:123 2024-01-24T02:50:48.660 INFO:teuthology.orchestra.run.smithi152.stdout:24 Jan 02:50:48 ntpd[14500]: Listen normally on 3 enp3s0f1 172.21.15.152:123 2024-01-24T02:50:48.661 INFO:teuthology.orchestra.run.smithi152.stdout:24 Jan 02:50:48 ntpd[14500]: Listen normally on 4 lo [::1]:123 2024-01-24T02:50:48.661 INFO:teuthology.orchestra.run.smithi152.stdout:24 Jan 02:50:48 ntpd[14500]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:6de3%5]:123 2024-01-24T02:50:48.661 INFO:teuthology.orchestra.run.smithi152.stdout:24 Jan 02:50:48 ntpd[14500]: Listening on routing socket on fd #22 for interface updates 2024-01-24T02:50:48.675 INFO:teuthology.orchestra.run.smithi195.stdout:24 Jan 02:50:48 ntpd[14513]: ntpd 4.2.8p10@1.3728-o (1): Starting 2024-01-24T02:50:48.675 INFO:teuthology.orchestra.run.smithi195.stdout:24 Jan 02:50:48 ntpd[14513]: Command line: ntpd -gq 2024-01-24T02:50:48.676 INFO:teuthology.orchestra.run.smithi195.stdout:24 Jan 02:50:48 ntpd[14513]: proto: precision = 0.123 usec (-23) 2024-01-24T02:50:48.676 INFO:teuthology.orchestra.run.smithi195.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-01-24T02:50:48.676 INFO:teuthology.orchestra.run.smithi195.stdout:24 Jan 02:50:48 ntpd[14513]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-01-24T02:50:48.677 INFO:teuthology.orchestra.run.smithi195.stderr:restrict ::: KOD does nothing without LIMITED. 2024-01-24T02:50:48.678 INFO:teuthology.orchestra.run.smithi195.stdout:24 Jan 02:50:48 ntpd[14513]: restrict ::: KOD does nothing without LIMITED. 2024-01-24T02:50:48.678 INFO:teuthology.orchestra.run.smithi195.stdout:24 Jan 02:50:48 ntpd[14513]: Listen and drop on 0 v6wildcard [::]:123 2024-01-24T02:50:48.678 INFO:teuthology.orchestra.run.smithi195.stdout:24 Jan 02:50:48 ntpd[14513]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-01-24T02:50:48.678 INFO:teuthology.orchestra.run.smithi195.stdout:24 Jan 02:50:48 ntpd[14513]: Listen normally on 2 lo 127.0.0.1:123 2024-01-24T02:50:48.678 INFO:teuthology.orchestra.run.smithi195.stdout:24 Jan 02:50:48 ntpd[14513]: Listen normally on 3 enp3s0f1 172.21.15.195:123 2024-01-24T02:50:48.678 INFO:teuthology.orchestra.run.smithi195.stdout:24 Jan 02:50:48 ntpd[14513]: Listen normally on 4 lo [::1]:123 2024-01-24T02:50:48.678 INFO:teuthology.orchestra.run.smithi195.stdout:24 Jan 02:50:48 ntpd[14513]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:8081%5]:123 2024-01-24T02:50:48.678 INFO:teuthology.orchestra.run.smithi195.stdout:24 Jan 02:50:48 ntpd[14513]: Listening on routing socket on fd #22 for interface updates 2024-01-24T02:50:49.676 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:49 ntpd[14513]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:49.676 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:49 ntpd[14513]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:49.676 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:49 ntpd[14513]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:49.676 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:49 ntpd[14513]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:49.676 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:49 ntpd[14513]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:49.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:49 ntpd[14513]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:49.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:49 ntpd[14513]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:49.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:49 ntpd[14513]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:50.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:50 ntpd[14500]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:50.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:50 ntpd[14500]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:50.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:50 ntpd[14500]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:50.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:50 ntpd[14500]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:50.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:50 ntpd[14500]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:50.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:50 ntpd[14500]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:50.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:50 ntpd[14500]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:50.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:50 ntpd[14500]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:51.676 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:51 ntpd[14513]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:51.676 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:51 ntpd[14513]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:51.676 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:51 ntpd[14513]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:51.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:51 ntpd[14513]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:51.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:51 ntpd[14513]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:51.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:51 ntpd[14513]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:51.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:51 ntpd[14513]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:51.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:51 ntpd[14513]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:51.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:51 ntpd[14513]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:51.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:51 ntpd[14513]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:51.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:51 ntpd[14513]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:51.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:51 ntpd[14513]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:52.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:52 ntpd[14500]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:52.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:52 ntpd[14500]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:52.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:52 ntpd[14500]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:52.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:52 ntpd[14500]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:52.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:52 ntpd[14500]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:52.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:52 ntpd[14500]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:52.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:52 ntpd[14500]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:52.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:52 ntpd[14500]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:53.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:53 ntpd[14500]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:53.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:53 ntpd[14500]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:53.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:53 ntpd[14500]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:53.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:53 ntpd[14500]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:53.676 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:53 ntpd[14513]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:53.676 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:53 ntpd[14513]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:53 ntpd[14513]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:53 ntpd[14513]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:53 ntpd[14513]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:53 ntpd[14513]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:53 ntpd[14513]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:53 ntpd[14513]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:53 ntpd[14513]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:53 ntpd[14513]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:53 ntpd[14513]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:53 ntpd[14513]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:54.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:54 ntpd[14500]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:54.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:54 ntpd[14500]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:54.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:54 ntpd[14500]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:54.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:54 ntpd[14500]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:54.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:54 ntpd[14500]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:54.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:54 ntpd[14500]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:54.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:54 ntpd[14500]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:54.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:54 ntpd[14500]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:55.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:55 ntpd[14500]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:55.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:55 ntpd[14500]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:55.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:55 ntpd[14500]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:55.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:55 ntpd[14500]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:55.675 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:55 ntpd[14513]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:55.676 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:55 ntpd[14513]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:55.676 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:55 ntpd[14513]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:55.676 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:55 ntpd[14513]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:55.676 INFO:teuthology.orchestra.run.smithi195.stdout:24 Jan 02:50:55 ntpd[14513]: ntpd: time slew +0.000757 s 2024-01-24T02:50:55.676 INFO:teuthology.orchestra.run.smithi195.stdout:ntpd: time slew +0.000757s 2024-01-24T02:50:55.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:55 ntpd[14513]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-01-24T02:50:55.677 INFO:teuthology.orchestra.run.smithi195.stderr:24 Jan 02:50:55 ntpd[14513]: can't open /var/log/ntpstats/loopstats.20240124: Permission denied 2024-01-24T02:50:55.739 INFO:teuthology.orchestra.run.smithi195.stdout: remote refid st t when poll reach delay offset jitter 2024-01-24T02:50:55.739 INFO:teuthology.orchestra.run.smithi195.stdout:============================================================================== 2024-01-24T02:50:55.739 INFO:teuthology.orchestra.run.smithi195.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-24T02:50:55.739 INFO:teuthology.orchestra.run.smithi195.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-24T02:50:55.739 INFO:teuthology.orchestra.run.smithi195.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-24T02:50:55.739 INFO:teuthology.orchestra.run.smithi195.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-24T02:50:56.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:56 ntpd[14500]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-24T02:50:56.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:56 ntpd[14500]: can't open /var/log/ntpstats/rawstats.20240124: Permission denied 2024-01-24T02:50:56.658 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:56 ntpd[14500]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-24T02:50:56.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:56 ntpd[14500]: can't open /var/log/ntpstats/peerstats.20240124: Permission denied 2024-01-24T02:50:56.659 INFO:teuthology.orchestra.run.smithi152.stdout:24 Jan 02:50:56 ntpd[14500]: ntpd: time slew +0.001468 s 2024-01-24T02:50:56.659 INFO:teuthology.orchestra.run.smithi152.stdout:ntpd: time slew +0.001468s 2024-01-24T02:50:56.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:56 ntpd[14500]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-01-24T02:50:56.659 INFO:teuthology.orchestra.run.smithi152.stderr:24 Jan 02:50:56 ntpd[14500]: can't open /var/log/ntpstats/loopstats.20240124: Permission denied 2024-01-24T02:50:56.722 INFO:teuthology.orchestra.run.smithi152.stdout: remote refid st t when poll reach delay offset jitter 2024-01-24T02:50:56.722 INFO:teuthology.orchestra.run.smithi152.stdout:============================================================================== 2024-01-24T02:50:56.722 INFO:teuthology.orchestra.run.smithi152.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-24T02:50:56.722 INFO:teuthology.orchestra.run.smithi152.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-24T02:50:56.722 INFO:teuthology.orchestra.run.smithi152.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-24T02:50:56.722 INFO:teuthology.orchestra.run.smithi152.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-24T02:50:56.723 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-01-24T02:50:56.733 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-01-24T02:50:56.733 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:50:56.733 DEBUG:teuthology.orchestra.run.smithi152:> dd if=/scratch_devs of=/dev/stdout 2024-01-24T02:50:56.740 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-24T02:50:56.740 DEBUG:teuthology.orchestra.run.smithi152:> stat /dev/vg_nvme/lv_1 2024-01-24T02:50:56.789 INFO:teuthology.orchestra.run.smithi152.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-01-24T02:50:56.789 INFO:teuthology.orchestra.run.smithi152.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-24T02:50:56.790 INFO:teuthology.orchestra.run.smithi152.stdout:Device: 6h/6d Inode: 340 Links: 1 2024-01-24T02:50:56.790 INFO:teuthology.orchestra.run.smithi152.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-24T02:50:56.790 INFO:teuthology.orchestra.run.smithi152.stdout:Access: 2024-01-24 02:49:28.425985048 +0000 2024-01-24T02:50:56.790 INFO:teuthology.orchestra.run.smithi152.stdout:Modify: 2024-01-24 02:49:28.253989143 +0000 2024-01-24T02:50:56.790 INFO:teuthology.orchestra.run.smithi152.stdout:Change: 2024-01-24 02:49:28.253989143 +0000 2024-01-24T02:50:56.790 INFO:teuthology.orchestra.run.smithi152.stdout: Birth: - 2024-01-24T02:50:56.790 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-01-24T02:50:56.844 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records in 2024-01-24T02:50:56.844 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records out 2024-01-24T02:50:56.845 INFO:teuthology.orchestra.run.smithi152.stderr:512 bytes copied, 0.000361209 s, 1.4 MB/s 2024-01-24T02:50:56.846 DEBUG:teuthology.orchestra.run.smithi152:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-01-24T02:50:56.895 DEBUG:teuthology.orchestra.run.smithi152:> stat /dev/vg_nvme/lv_2 2024-01-24T02:50:56.946 INFO:teuthology.orchestra.run.smithi152.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-01-24T02:50:56.947 INFO:teuthology.orchestra.run.smithi152.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-24T02:50:56.947 INFO:teuthology.orchestra.run.smithi152.stdout:Device: 6h/6d Inode: 347 Links: 1 2024-01-24T02:50:56.947 INFO:teuthology.orchestra.run.smithi152.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-24T02:50:56.947 INFO:teuthology.orchestra.run.smithi152.stdout:Access: 2024-01-24 02:49:28.685978857 +0000 2024-01-24T02:50:56.947 INFO:teuthology.orchestra.run.smithi152.stdout:Modify: 2024-01-24 02:49:28.549982096 +0000 2024-01-24T02:50:56.947 INFO:teuthology.orchestra.run.smithi152.stdout:Change: 2024-01-24 02:49:28.549982096 +0000 2024-01-24T02:50:56.948 INFO:teuthology.orchestra.run.smithi152.stdout: Birth: - 2024-01-24T02:50:56.948 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-01-24T02:50:57.004 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records in 2024-01-24T02:50:57.004 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records out 2024-01-24T02:50:57.004 INFO:teuthology.orchestra.run.smithi152.stderr:512 bytes copied, 0.000347915 s, 1.5 MB/s 2024-01-24T02:50:57.005 DEBUG:teuthology.orchestra.run.smithi152:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-01-24T02:50:57.055 DEBUG:teuthology.orchestra.run.smithi152:> stat /dev/vg_nvme/lv_3 2024-01-24T02:50:57.105 INFO:teuthology.orchestra.run.smithi152.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-01-24T02:50:57.105 INFO:teuthology.orchestra.run.smithi152.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-24T02:50:57.105 INFO:teuthology.orchestra.run.smithi152.stdout:Device: 6h/6d Inode: 353 Links: 1 2024-01-24T02:50:57.106 INFO:teuthology.orchestra.run.smithi152.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-24T02:50:57.106 INFO:teuthology.orchestra.run.smithi152.stdout:Access: 2024-01-24 02:49:28.961972286 +0000 2024-01-24T02:50:57.106 INFO:teuthology.orchestra.run.smithi152.stdout:Modify: 2024-01-24 02:49:28.817975714 +0000 2024-01-24T02:50:57.106 INFO:teuthology.orchestra.run.smithi152.stdout:Change: 2024-01-24 02:49:28.817975714 +0000 2024-01-24T02:50:57.106 INFO:teuthology.orchestra.run.smithi152.stdout: Birth: - 2024-01-24T02:50:57.106 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-01-24T02:50:57.160 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records in 2024-01-24T02:50:57.160 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records out 2024-01-24T02:50:57.160 INFO:teuthology.orchestra.run.smithi152.stderr:512 bytes copied, 0.000363493 s, 1.4 MB/s 2024-01-24T02:50:57.161 DEBUG:teuthology.orchestra.run.smithi152:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-01-24T02:50:57.211 DEBUG:teuthology.orchestra.run.smithi152:> stat /dev/vg_nvme/lv_4 2024-01-24T02:50:57.261 INFO:teuthology.orchestra.run.smithi152.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-01-24T02:50:57.261 INFO:teuthology.orchestra.run.smithi152.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-24T02:50:57.261 INFO:teuthology.orchestra.run.smithi152.stdout:Device: 6h/6d Inode: 359 Links: 1 2024-01-24T02:50:57.261 INFO:teuthology.orchestra.run.smithi152.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-24T02:50:57.261 INFO:teuthology.orchestra.run.smithi152.stdout:Access: 2024-01-24 02:49:29.261965143 +0000 2024-01-24T02:50:57.261 INFO:teuthology.orchestra.run.smithi152.stdout:Modify: 2024-01-24 02:49:29.097969048 +0000 2024-01-24T02:50:57.261 INFO:teuthology.orchestra.run.smithi152.stdout:Change: 2024-01-24 02:49:29.097969048 +0000 2024-01-24T02:50:57.261 INFO:teuthology.orchestra.run.smithi152.stdout: Birth: - 2024-01-24T02:50:57.262 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-01-24T02:50:57.316 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records in 2024-01-24T02:50:57.316 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records out 2024-01-24T02:50:57.316 INFO:teuthology.orchestra.run.smithi152.stderr:512 bytes copied, 0.000371305 s, 1.4 MB/s 2024-01-24T02:50:57.317 DEBUG:teuthology.orchestra.run.smithi152:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-01-24T02:50:57.367 DEBUG:teuthology.orchestra.run.smithi152:> 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-24T02:50:57.456 INFO:teuthology.orchestra.run.smithi152.stdout:loop 2024-01-24T02:50:57.457 INFO:tasks.nvme_loop:Connecting nvme_loop smithi152:/dev/vg_nvme/lv_1... 2024-01-24T02:50:57.457 DEBUG:teuthology.orchestra.run.smithi152:> 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-24T02:50:57.521 INFO:teuthology.orchestra.run.smithi152.stdout:1 2024-01-24T02:50:57.552 INFO:teuthology.orchestra.run.smithi152.stdout:/dev/vg_nvme/lv_11 2024-01-24T02:50:57.573 INFO:tasks.nvme_loop:Connecting nvme_loop smithi152:/dev/vg_nvme/lv_2... 2024-01-24T02:50:57.574 DEBUG:teuthology.orchestra.run.smithi152:> 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-24T02:50:57.638 INFO:teuthology.orchestra.run.smithi152.stdout:1 2024-01-24T02:50:57.660 INFO:teuthology.orchestra.run.smithi152.stdout:/dev/vg_nvme/lv_21 2024-01-24T02:50:57.680 INFO:tasks.nvme_loop:Connecting nvme_loop smithi152:/dev/vg_nvme/lv_3... 2024-01-24T02:50:57.680 DEBUG:teuthology.orchestra.run.smithi152:> 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-24T02:50:57.743 INFO:teuthology.orchestra.run.smithi152.stdout:1 2024-01-24T02:50:57.770 INFO:teuthology.orchestra.run.smithi152.stdout:/dev/vg_nvme/lv_31 2024-01-24T02:50:57.791 INFO:tasks.nvme_loop:Connecting nvme_loop smithi152:/dev/vg_nvme/lv_4... 2024-01-24T02:50:57.791 DEBUG:teuthology.orchestra.run.smithi152:> 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-24T02:50:57.859 INFO:teuthology.orchestra.run.smithi152.stdout:1 2024-01-24T02:50:57.886 INFO:teuthology.orchestra.run.smithi152.stdout:/dev/vg_nvme/lv_41 2024-01-24T02:50:57.908 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:50:57.908 DEBUG:teuthology.orchestra.run.smithi152:> dd if=/scratch_devs of=/dev/stdout 2024-01-24T02:50:57.956 DEBUG:teuthology.orchestra.run.smithi152:> sudo nvme list 2024-01-24T02:50:58.012 INFO:teuthology.orchestra.run.smithi152.stdout:Node SN Model Namespace Usage Format FW Rev 2024-01-24T02:50:58.013 INFO:teuthology.orchestra.run.smithi152.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-01-24T02:50:58.013 INFO:teuthology.orchestra.run.smithi152.stdout:/dev/nvme0n1 CVFT623300JT400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-01-24T02:50:58.013 INFO:teuthology.orchestra.run.smithi152.stdout:/dev/nvme1n1 bba8ac4aa23c77f5 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-24T02:50:58.013 INFO:teuthology.orchestra.run.smithi152.stdout:/dev/nvme2n1 3aad16be3a9d3e24 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-24T02:50:58.013 INFO:teuthology.orchestra.run.smithi152.stdout:/dev/nvme3n1 c1b64f80b1687658 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-24T02:50:58.013 INFO:teuthology.orchestra.run.smithi152.stdout:/dev/nvme4n1 21dd12ff9f96e5ce Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-24T02:50:58.014 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-24T02:50:58.014 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:50:58.014 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/scratch_devs 2024-01-24T02:50:58.073 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-01-24T02:50:58.073 DEBUG:teuthology.orchestra.run.smithi195:> dd if=/scratch_devs of=/dev/stdout 2024-01-24T02:50:58.080 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-24T02:50:58.080 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/vg_nvme/lv_1 2024-01-24T02:50:58.131 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-01-24T02:50:58.131 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-24T02:50:58.131 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 6h/6d Inode: 342 Links: 1 2024-01-24T02:50:58.131 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-24T02:50:58.131 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-01-24 02:49:23.066022928 +0000 2024-01-24T02:50:58.131 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-01-24 02:49:22.898025810 +0000 2024-01-24T02:50:58.131 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-01-24 02:49:22.898025810 +0000 2024-01-24T02:50:58.131 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-01-24T02:50:58.131 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-01-24T02:50:58.185 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-01-24T02:50:58.185 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-01-24T02:50:58.185 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000252252 s, 2.0 MB/s 2024-01-24T02:50:58.186 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-01-24T02:50:58.240 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/vg_nvme/lv_2 2024-01-24T02:50:58.294 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-01-24T02:50:58.294 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-24T02:50:58.294 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 6h/6d Inode: 349 Links: 1 2024-01-24T02:50:58.295 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-24T02:50:58.295 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-01-24 02:49:23.354017803 +0000 2024-01-24T02:50:58.295 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-01-24 02:49:23.190020721 +0000 2024-01-24T02:50:58.295 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-01-24 02:49:23.190020721 +0000 2024-01-24T02:50:58.295 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-01-24T02:50:58.295 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-01-24T02:50:58.349 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-01-24T02:50:58.349 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-01-24T02:50:58.349 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.00029023 s, 1.8 MB/s 2024-01-24T02:50:58.350 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-01-24T02:50:58.400 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/vg_nvme/lv_3 2024-01-24T02:50:58.450 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-01-24T02:50:58.451 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-24T02:50:58.451 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 6h/6d Inode: 355 Links: 1 2024-01-24T02:50:58.451 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-24T02:50:58.451 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-01-24 02:49:23.646012606 +0000 2024-01-24T02:50:58.451 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-01-24 02:49:23.490015383 +0000 2024-01-24T02:50:58.451 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-01-24 02:49:23.490015383 +0000 2024-01-24T02:50:58.451 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-01-24T02:50:58.451 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-01-24T02:50:58.506 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-01-24T02:50:58.506 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-01-24T02:50:58.507 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000269128 s, 1.9 MB/s 2024-01-24T02:50:58.507 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-01-24T02:50:58.560 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/vg_nvme/lv_4 2024-01-24T02:50:58.611 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-01-24T02:50:58.611 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-24T02:50:58.611 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 6h/6d Inode: 361 Links: 1 2024-01-24T02:50:58.611 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-24T02:50:58.611 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-01-24 02:49:23.918007766 +0000 2024-01-24T02:50:58.611 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-01-24 02:49:23.766010471 +0000 2024-01-24T02:50:58.611 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-01-24 02:49:23.766010471 +0000 2024-01-24T02:50:58.611 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-01-24T02:50:58.612 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-01-24T02:50:58.664 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-01-24T02:50:58.665 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-01-24T02:50:58.665 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000284647 s, 1.8 MB/s 2024-01-24T02:50:58.666 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-01-24T02:50:58.716 DEBUG:teuthology.orchestra.run.smithi195:> 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-24T02:50:58.807 INFO:teuthology.orchestra.run.smithi195.stdout:loop 2024-01-24T02:50:58.809 INFO:tasks.nvme_loop:Connecting nvme_loop smithi195:/dev/vg_nvme/lv_1... 2024-01-24T02:50:58.809 DEBUG:teuthology.orchestra.run.smithi195:> 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-24T02:50:58.875 INFO:teuthology.orchestra.run.smithi195.stdout:1 2024-01-24T02:50:58.898 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/vg_nvme/lv_11 2024-01-24T02:50:58.923 INFO:tasks.nvme_loop:Connecting nvme_loop smithi195:/dev/vg_nvme/lv_2... 2024-01-24T02:50:58.923 DEBUG:teuthology.orchestra.run.smithi195:> 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-24T02:50:58.984 INFO:teuthology.orchestra.run.smithi195.stdout:1 2024-01-24T02:50:59.010 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/vg_nvme/lv_21 2024-01-24T02:50:59.034 INFO:tasks.nvme_loop:Connecting nvme_loop smithi195:/dev/vg_nvme/lv_3... 2024-01-24T02:50:59.034 DEBUG:teuthology.orchestra.run.smithi195:> 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-24T02:50:59.099 INFO:teuthology.orchestra.run.smithi195.stdout:1 2024-01-24T02:50:59.129 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/vg_nvme/lv_31 2024-01-24T02:50:59.148 INFO:tasks.nvme_loop:Connecting nvme_loop smithi195:/dev/vg_nvme/lv_4... 2024-01-24T02:50:59.149 DEBUG:teuthology.orchestra.run.smithi195:> 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-24T02:50:59.216 INFO:teuthology.orchestra.run.smithi195.stdout:1 2024-01-24T02:50:59.242 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/vg_nvme/lv_41 2024-01-24T02:50:59.263 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-01-24T02:50:59.263 DEBUG:teuthology.orchestra.run.smithi195:> dd if=/scratch_devs of=/dev/stdout 2024-01-24T02:50:59.310 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme list 2024-01-24T02:50:59.366 INFO:teuthology.orchestra.run.smithi195.stdout:Node SN Model Namespace Usage Format FW Rev 2024-01-24T02:50:59.366 INFO:teuthology.orchestra.run.smithi195.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-01-24T02:50:59.366 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/nvme0n1 PHMB751300FS480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-01-24T02:50:59.366 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/nvme1n1 f9bbec61877d3d20 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-24T02:50:59.366 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/nvme2n1 6a014d004bc0badb Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-24T02:50:59.366 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/nvme3n1 1062e214cd534a6a Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-24T02:50:59.366 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/nvme4n1 e4acaebe02d0fe85 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-24T02:50:59.367 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-24T02:50:59.367 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-01-24T02:50:59.367 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/scratch_devs 2024-01-24T02:50:59.420 INFO:teuthology.run_tasks:Running task cephadm... 2024-01-24T02:50:59.495 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': 'a70aebef70df6ec2d957347ccbfc484e0573dd5f'} 2024-01-24T02:50:59.495 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f 2024-01-24T02:50:59.496 INFO:tasks.cephadm:Cluster fsid is 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:50:59.496 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-01-24T02:50:59.496 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-01-24T02:50:59.496 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi152': '172.21.15.152', 'mon.smithi195': '172.21.15.195'} 2024-01-24T02:50:59.496 INFO:tasks.cephadm:Normalizing hostnames... 2024-01-24T02:50:59.496 DEBUG:teuthology.orchestra.run.smithi152:> sudo hostname $(hostname -s) 2024-01-24T02:50:59.510 DEBUG:teuthology.orchestra.run.smithi195:> sudo hostname $(hostname -s) 2024-01-24T02:50:59.526 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref a70aebef70df6ec2d957347ccbfc484e0573dd5f)... 2024-01-24T02:50:59.527 DEBUG:teuthology.orchestra.run.smithi152:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/a70aebef70df6ec2d957347ccbfc484e0573dd5f/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-01-24T02:50:59.799 INFO:teuthology.orchestra.run.smithi152.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Jan 24 02:50 /home/ubuntu/cephtest/cephadm 2024-01-24T02:50:59.799 DEBUG:teuthology.orchestra.run.smithi195:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/a70aebef70df6ec2d957347ccbfc484e0573dd5f/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-01-24T02:50:59.960 INFO:teuthology.orchestra.run.smithi195.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Jan 24 02:50 /home/ubuntu/cephtest/cephadm 2024-01-24T02:50:59.960 DEBUG:teuthology.orchestra.run.smithi152:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-01-24T02:50:59.969 DEBUG:teuthology.orchestra.run.smithi195:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-01-24T02:50:59.986 DEBUG:teuthology.orchestra.run.smithi152:> sudo mkdir -p /etc/ceph 2024-01-24T02:51:00.031 DEBUG:teuthology.orchestra.run.smithi195:> sudo mkdir -p /etc/ceph 2024-01-24T02:51:00.046 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod 777 /etc/ceph 2024-01-24T02:51:00.087 DEBUG:teuthology.orchestra.run.smithi195:> sudo chmod 777 /etc/ceph 2024-01-24T02:51:00.102 INFO:tasks.cephadm:Writing seed config... 2024-01-24T02:51:00.103 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-01-24T02:51:00.103 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-01-24T02:51:00.103 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-01-24T02:51:00.103 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-01-24T02:51:00.103 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-01-24T02:51:00.104 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-01-24T02:51:00.104 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-01-24T02:51:00.104 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-01-24T02:51:00.104 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:51:00.104 DEBUG:teuthology.orchestra.run.smithi152:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-01-24T02:51:00.135 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 = 676f9788-ba63-11ee-95b1-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-24T02:51:00.135 DEBUG:teuthology.orchestra.run.smithi152:mon.smithi152> sudo journalctl -f -n 0 -u ceph-676f9788-ba63-11ee-95b1-87774f69a715@mon.smithi152.service 2024-01-24T02:51:00.179 INFO:tasks.cephadm:Bootstrapping... 2024-01-24T02:51:00.179 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f -v bootstrap --fsid 676f9788-ba63-11ee-95b1-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.152 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-01-24T02:51:00.324 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:-- Logs begin at Sun 2022-10-16 12:17:23 UTC. -- 2024-01-24T02:51:00.542 INFO:teuthology.orchestra.run.smithi152.stderr:-------------------------------------------------------------------------------- 2024-01-24T02:51:00.542 INFO:teuthology.orchestra.run.smithi152.stderr:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f', '-v', 'bootstrap', '--fsid', '676f9788-ba63-11ee-95b1-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.152', '--skip-admin-label'] 2024-01-24T02:51:00.542 INFO:teuthology.orchestra.run.smithi152.stderr:Verifying podman|docker is present... 2024-01-24T02:51:00.542 INFO:teuthology.orchestra.run.smithi152.stderr:Verifying lvm2 is present... 2024-01-24T02:51:00.542 INFO:teuthology.orchestra.run.smithi152.stderr:Verifying time synchronization is in place... 2024-01-24T02:51:00.550 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-01-24T02:51:00.559 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: inactive 2024-01-24T02:51:00.567 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-01-24T02:51:00.574 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: inactive 2024-01-24T02:51:00.582 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: enabled 2024-01-24T02:51:00.591 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: inactive 2024-01-24T02:51:00.598 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-01-24T02:51:00.606 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: inactive 2024-01-24T02:51:00.616 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: enabled 2024-01-24T02:51:00.623 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: active 2024-01-24T02:51:00.624 INFO:teuthology.orchestra.run.smithi152.stderr:Unit ntp.service is enabled and running 2024-01-24T02:51:00.624 INFO:teuthology.orchestra.run.smithi152.stderr:Repeating the final host check... 2024-01-24T02:51:00.624 INFO:teuthology.orchestra.run.smithi152.stderr:docker (/usr/bin/docker) is present 2024-01-24T02:51:00.624 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl is present 2024-01-24T02:51:00.625 INFO:teuthology.orchestra.run.smithi152.stderr:lvcreate is present 2024-01-24T02:51:00.631 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-01-24T02:51:00.639 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: inactive 2024-01-24T02:51:00.647 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-01-24T02:51:00.655 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: inactive 2024-01-24T02:51:00.665 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: enabled 2024-01-24T02:51:00.674 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: inactive 2024-01-24T02:51:00.681 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-01-24T02:51:00.689 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: inactive 2024-01-24T02:51:00.698 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: enabled 2024-01-24T02:51:00.705 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: active 2024-01-24T02:51:00.707 INFO:teuthology.orchestra.run.smithi152.stderr:Unit ntp.service is enabled and running 2024-01-24T02:51:00.707 INFO:teuthology.orchestra.run.smithi152.stderr:Host looks OK 2024-01-24T02:51:00.707 INFO:teuthology.orchestra.run.smithi152.stderr:Cluster fsid: 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:51:00.707 INFO:teuthology.orchestra.run.smithi152.stderr:Acquiring lock 139749737841944 on /run/cephadm/676f9788-ba63-11ee-95b1-87774f69a715.lock 2024-01-24T02:51:00.707 INFO:teuthology.orchestra.run.smithi152.stderr:Lock 139749737841944 acquired on /run/cephadm/676f9788-ba63-11ee-95b1-87774f69a715.lock 2024-01-24T02:51:00.708 INFO:teuthology.orchestra.run.smithi152.stderr:Verifying IP 172.21.15.152 port 3300 ... 2024-01-24T02:51:00.708 INFO:teuthology.orchestra.run.smithi152.stderr:Verifying IP 172.21.15.152 port 6789 ... 2024-01-24T02:51:00.708 INFO:teuthology.orchestra.run.smithi152.stderr:Base mon IP(s) is [172.21.15.152:3300, 172.21.15.152:6789], mon addrv is [v2:172.21.15.152:3300,v1:172.21.15.152:6789] 2024-01-24T02:51:00.712 INFO:teuthology.orchestra.run.smithi152.stderr:/sbin/ip: default via 172.21.15.254 dev enp3s0f1 2024-01-24T02:51:00.713 INFO:teuthology.orchestra.run.smithi152.stderr:/sbin/ip: default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.152 metric 100 2024-01-24T02:51:00.713 INFO:teuthology.orchestra.run.smithi152.stderr:/sbin/ip: 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-01-24T02:51:00.713 INFO:teuthology.orchestra.run.smithi152.stderr:/sbin/ip: 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.152 2024-01-24T02:51:00.713 INFO:teuthology.orchestra.run.smithi152.stderr:/sbin/ip: 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.152 metric 100 2024-01-24T02:51:00.716 INFO:teuthology.orchestra.run.smithi152.stderr:/sbin/ip: fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-01-24T02:51:00.716 INFO:teuthology.orchestra.run.smithi152.stderr:/sbin/ip: default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 pref medium 2024-01-24T02:51:00.720 INFO:teuthology.orchestra.run.smithi152.stderr:/sbin/ip: 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-01-24T02:51:00.720 INFO:teuthology.orchestra.run.smithi152.stderr:/sbin/ip: inet6 ::1/128 scope host 2024-01-24T02:51:00.721 INFO:teuthology.orchestra.run.smithi152.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2024-01-24T02:51:00.721 INFO:teuthology.orchestra.run.smithi152.stderr:/sbin/ip: 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-01-24T02:51:00.721 INFO:teuthology.orchestra.run.smithi152.stderr:/sbin/ip: inet6 fe80::ec4:7aff:fe88:6de3/64 scope link 2024-01-24T02:51:00.721 INFO:teuthology.orchestra.run.smithi152.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2024-01-24T02:51:00.722 INFO:teuthology.orchestra.run.smithi152.stderr:Mon IP `172.21.15.152` is in CIDR network `172.21.0.0/20` 2024-01-24T02:51:00.722 INFO:teuthology.orchestra.run.smithi152.stderr:Mon IP `172.21.15.152` is in CIDR network `172.21.0.0/20` 2024-01-24T02:51:00.723 INFO:teuthology.orchestra.run.smithi152.stderr:Mon IP `172.21.15.152` is in CIDR network `172.21.15.254/32` 2024-01-24T02:51:00.723 INFO:teuthology.orchestra.run.smithi152.stderr:Mon IP `172.21.15.152` is in CIDR network `172.21.15.254/32` 2024-01-24T02:51:00.723 INFO:teuthology.orchestra.run.smithi152.stderr:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20', '172.21.15.254/32', '172.21.15.254/32'] 2024-01-24T02:51:00.723 INFO:teuthology.orchestra.run.smithi152.stderr:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-01-24T02:51:00.724 INFO:teuthology.orchestra.run.smithi152.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f... 2024-01-24T02:51:01.086 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/docker: a70aebef70df6ec2d957347ccbfc484e0573dd5f: Pulling from ceph-ci/ceph 2024-01-24T02:51:01.095 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/docker: 6c507150f7e9: Pulling fs layer 2024-01-24T02:51:01.095 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/docker: bc4c4b5b825b: Pulling fs layer 2024-01-24T02:51:01.814 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/docker: 6c507150f7e9: Download complete 2024-01-24T02:51:03.689 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/docker: bc4c4b5b825b: Verifying Checksum 2024-01-24T02:51:03.689 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/docker: bc4c4b5b825b: Download complete 2024-01-24T02:51:04.213 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/docker: 6c507150f7e9: Pull complete 2024-01-24T02:51:14.083 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/docker: bc4c4b5b825b: Pull complete 2024-01-24T02:51:14.200 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/docker: Digest: sha256:03cebbcb5093d723ae3c0cb1ed662305909bd21ed66495ca95a0fbb33e52a87e 2024-01-24T02:51:14.232 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/docker: Status: Downloaded newer image for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f 2024-01-24T02:51:14.258 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/docker: quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f 2024-01-24T02:51:26.141 INFO:teuthology.orchestra.run.smithi152.stderr:ceph: ceph version 16.2.14-449-ga70aebef (a70aebef70df6ec2d957347ccbfc484e0573dd5f) pacific (stable) 2024-01-24T02:51:26.616 INFO:teuthology.orchestra.run.smithi152.stderr:Ceph version: ceph version 16.2.14-449-ga70aebef (a70aebef70df6ec2d957347ccbfc484e0573dd5f) pacific (stable) 2024-01-24T02:51:26.616 INFO:teuthology.orchestra.run.smithi152.stderr:Extracting ceph user uid/gid from container image... 2024-01-24T02:51:27.498 INFO:teuthology.orchestra.run.smithi152.stderr:stat: 167 167 2024-01-24T02:51:28.004 INFO:teuthology.orchestra.run.smithi152.stderr:Creating initial keys... 2024-01-24T02:51:28.913 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-authtool: AQAwe7Blj5piNhAAep1EMFFTl5hSSes5GjasbQ== 2024-01-24T02:51:30.212 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-authtool: AQAye7BlAtGfDBAAtZG/M3dFuJg5Pn+SSeTBMw== 2024-01-24T02:51:31.626 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-authtool: AQAze7BlvJlFJRAA+SJMeogipMRhdBPLfGTlYg== 2024-01-24T02:51:32.088 INFO:teuthology.orchestra.run.smithi152.stderr:Creating initial monmap... 2024-01-24T02:51:32.969 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: monmap file /tmp/monmap 2024-01-24T02:51:32.969 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: set fsid to 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:51:32.969 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-01-24T02:51:33.481 INFO:teuthology.orchestra.run.smithi152.stderr:monmaptool for smithi152 [v2:172.21.15.152:3300,v1:172.21.15.152:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-01-24T02:51:33.481 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/monmaptool: set fsid to 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:51:33.481 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-01-24T02:51:33.481 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T02:51:33.481 INFO:teuthology.orchestra.run.smithi152.stderr:Creating mon... 2024-01-24T02:51:34.367 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.360+0000 7f267f7cc880 0 set uid:gid to 167:167 (ceph:ceph) 2024-01-24T02:51:34.367 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 1 imported monmap: 2024-01-24T02:51:34.367 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: epoch 0 2024-01-24T02:51:34.368 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: fsid 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:51:34.368 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: last_changed 2024-01-24T02:51:32.968465+0000 2024-01-24T02:51:34.368 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: created 2024-01-24T02:51:32.968465+0000 2024-01-24T02:51:34.368 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: min_mon_release 0 (unknown) 2024-01-24T02:51:34.393 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: election_strategy: 1 2024-01-24T02:51:34.393 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 0: [v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0] mon.smithi152 2024-01-24T02:51:34.393 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.394 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 0 /usr/bin/ceph-mon: set fsid to 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:51:34.394 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: RocksDB version: 6.8.1 2024-01-24T02:51:34.394 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.394 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-01-24T02:51:34.394 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Compile date Jan 11 2024 2024-01-24T02:51:34.394 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: DB SUMMARY 2024-01-24T02:51:34.394 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.394 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi152/store.db dir, Total Num: 0, files: 2024-01-24T02:51:34.394 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.394 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi152/store.db: 2024-01-24T02:51:34.394 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.394 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.error_if_exists: 0 2024-01-24T02:51:34.394 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.create_if_missing: 1 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.paranoid_checks: 1 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.env: 0x55f7f7978080 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.fs: Posix File System 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.info_log: 0x55f7f8ea9380 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.max_file_opening_threads: 16 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.statistics: (nil) 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.use_fsync: 0 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.max_log_file_size: 0 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.keep_log_file_num: 1000 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.recycle_log_file_num: 0 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.allow_fallocate: 1 2024-01-24T02:51:34.395 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.allow_mmap_reads: 0 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.allow_mmap_writes: 0 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.use_direct_reads: 0 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.create_missing_column_families: 0 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.db_log_dir: 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi152/store.db 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.max_subcompactions: 1 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.max_background_flushes: -1 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-01-24T02:51:34.396 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.advise_random_on_open: 1 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.db_write_buffer_size: 0 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.write_buffer_manager: 0x55f7f8eaf980 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.rate_limiter: (nil) 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.wal_recovery_mode: 2 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.enable_thread_tracking: 0 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.enable_pipelined_write: 0 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.unordered_write: 0 2024-01-24T02:51:34.397 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.row_cache: None 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.wal_filter: None 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.allow_ingest_behind: 0 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.preserve_deletes: 0 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.two_write_queues: 0 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.manual_wal_flush: 0 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.atomic_flush: 0 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-01-24T02:51:34.398 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.log_readahead_size: 0 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.max_background_jobs: 2 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.max_background_compactions: -1 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.max_total_wal_size: 0 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.max_open_files: -1 2024-01-24T02:51:34.399 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.bytes_per_sync: 0 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Options.compaction_readahead_size: 0 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Compression algorithms supported: 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: kZSTD supported: 0 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: kXpressCompression supported: 0 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: kLZ4HCCompression supported: 1 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: kLZ4Compression supported: 1 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: kBZip2Compression supported: 0 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: kZlibCompression supported: 1 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: kSnappyCompression supported: 1 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-01-24T02:51:34.400 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.364+0000 7f267f7cc880 4 rocksdb: [db_impl/db_impl_open.cc:273] Creating manifest 1 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi152/store.db/MANIFEST-000001 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.merge_operator: 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compaction_filter: None 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compaction_filter_factory: None 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55f7f8dbdd30) 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks: 1 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks_with_high_priority: 0 2024-01-24T02:51:34.401 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: pin_l0_filter_and_index_blocks_in_cache: 0 2024-01-24T02:51:34.402 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: pin_top_level_index_and_filter: 1 2024-01-24T02:51:34.402 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: index_type: 0 2024-01-24T02:51:34.402 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: data_block_index_type: 0 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: index_shortening: 1 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: data_block_hash_table_util_ratio: 0.750000 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: hash_index_allow_collision: 1 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: checksum: 1 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: no_block_cache: 0 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: block_cache: 0x55f7f8df4d10 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: block_cache_name: BinnedLRUCache 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: block_cache_options: 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: capacity : 536870912 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: num_shard_bits : 4 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: strict_capacity_limit : 0 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: high_pri_pool_ratio: 0.000 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: block_cache_compressed: (nil) 2024-01-24T02:51:34.403 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: persistent_cache: (nil) 2024-01-24T02:51:34.404 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: block_size: 4096 2024-01-24T02:51:34.404 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: block_size_deviation: 10 2024-01-24T02:51:34.404 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: block_restart_interval: 16 2024-01-24T02:51:34.404 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: index_block_restart_interval: 1 2024-01-24T02:51:34.404 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: metadata_block_size: 4096 2024-01-24T02:51:34.404 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: partition_filters: 0 2024-01-24T02:51:34.404 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: use_delta_encoding: 1 2024-01-24T02:51:34.404 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: filter_policy: rocksdb.BuiltinBloomFilter 2024-01-24T02:51:34.404 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: whole_key_filtering: 1 2024-01-24T02:51:34.404 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: verify_compression: 0 2024-01-24T02:51:34.404 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: read_amp_bytes_per_bit: 0 2024-01-24T02:51:34.404 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: format_version: 2 2024-01-24T02:51:34.404 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: enable_index_compression: 1 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: block_align: 0 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.write_buffer_size: 33554432 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_write_buffer_number: 2 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compression: NoCompression 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.bottommost_compression: Disabled 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.prefix_extractor: nullptr 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.num_levels: 7 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-01-24T02:51:34.405 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compression_opts.level: 32767 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compression_opts.strategy: 0 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compression_opts.enabled: false 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.target_file_size_base: 67108864 2024-01-24T02:51:34.406 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.arena_block_size: 4194304 2024-01-24T02:51:34.407 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.disable_auto_compactions: 0 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-01-24T02:51:34.408 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.table_properties_collectors: 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.inplace_update_support: 0 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.bloom_locality: 0 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.max_successive_merges: 0 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.paranoid_file_checks: 0 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.force_consistency_checks: 0 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.report_bg_io_stats: 0 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.ttl: 2592000 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-01-24T02:51:34.409 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi152/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-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.368+0000 7f267f7cc880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-01-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.372+0000 7f267f7cc880 4 rocksdb: DB pointer 0x55f7f8ebd800 2024-01-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.372+0000 7f2668642700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-01-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.372+0000 7f2668642700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-01-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: ** DB Stats ** 2024-01-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-01-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.410 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-01-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-01-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-01-24T02:51:34.411 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-01-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-01-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-01-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.412 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-01-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-01-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-01-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-01-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-01-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.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-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-01-24T02:51:34.413 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: 2024-01-24T02:51:34.414 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.376+0000 7f267f7cc880 4 rocksdb: [db_impl/db_impl.cc:397] Shutdown: canceling all background work 2024-01-24T02:51:34.414 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.376+0000 7f267f7cc880 4 rocksdb: [db_impl/db_impl.cc:573] Shutdown complete 2024-01-24T02:51:34.414 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph-mon: debug 2024-01-24T02:51:34.376+0000 7f267f7cc880 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi152 for mon.smithi152 2024-01-24T02:51:34.839 INFO:teuthology.orchestra.run.smithi152.stderr:create mon.smithi152 on 2024-01-24T02:51:34.966 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-01-24T02:51:35.069 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph-676f9788-ba63-11ee-95b1-87774f69a715.target -> /etc/systemd/system/ceph-676f9788-ba63-11ee-95b1-87774f69a715.target. 2024-01-24T02:51:35.069 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: Created symlink /etc/systemd/system/ceph.target.wants/ceph-676f9788-ba63-11ee-95b1-87774f69a715.target -> /etc/systemd/system/ceph-676f9788-ba63-11ee-95b1-87774f69a715.target. 2024-01-24T02:51:35.280 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: Failed to reset failed state of unit ceph-676f9788-ba63-11ee-95b1-87774f69a715@mon.smithi152.service: Unit ceph-676f9788-ba63-11ee-95b1-87774f69a715@mon.smithi152.service is not loaded. 2024-01-24T02:51:35.287 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: Created symlink /etc/systemd/system/ceph-676f9788-ba63-11ee-95b1-87774f69a715.target.wants/ceph-676f9788-ba63-11ee-95b1-87774f69a715@mon.smithi152.service -> /etc/systemd/system/ceph-676f9788-ba63-11ee-95b1-87774f69a715@.service. 2024-01-24T02:51:35.394 INFO:teuthology.orchestra.run.smithi152.stderr:firewalld does not appear to be present 2024-01-24T02:51:35.394 INFO:teuthology.orchestra.run.smithi152.stderr:Not possible to enable service . firewalld.service is not available 2024-01-24T02:51:35.395 INFO:teuthology.orchestra.run.smithi152.stderr:Waiting for mon to start... 2024-01-24T02:51:35.395 INFO:teuthology.orchestra.run.smithi152.stderr:Waiting for mon... 2024-01-24T02:51:35.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:35 smithi152 systemd[1]: Started Ceph mon.smithi152 for 676f9788-ba63-11ee-95b1-87774f69a715. 2024-01-24T02:51:36.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:36 smithi152 bash[15683]: cluster 2024-01-24T02:51:36.710175+0000 mon.smithi152 (mon.0) 0 : [INF] mkfs 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:51:36.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:36 smithi152 bash[15683]: cluster 2024-01-24T02:51:36.694122+0000 mon.smithi152 (mon.0) 1 : cluster [INF] mon.smithi152 is new leader, mons smithi152 in quorum (ranks 0) 2024-01-24T02:51:37.056 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: cluster: 2024-01-24T02:51:37.057 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: id: 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:51:37.057 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: health: HEALTH_OK 2024-01-24T02:51:37.057 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 2024-01-24T02:51:37.057 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: services: 2024-01-24T02:51:37.057 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: mon: 1 daemons, quorum smithi152 (age 0.348693s) 2024-01-24T02:51:37.057 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: mgr: no daemons active 2024-01-24T02:51:37.057 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: osd: 0 osds: 0 up, 0 in 2024-01-24T02:51:37.057 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 2024-01-24T02:51:37.057 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: data: 2024-01-24T02:51:37.057 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: pools: 0 pools, 0 pgs 2024-01-24T02:51:37.057 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: objects: 0 objects, 0 B 2024-01-24T02:51:37.057 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: usage: 0 B used, 0 B / 0 B avail 2024-01-24T02:51:37.057 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: pgs: 2024-01-24T02:51:37.058 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 2024-01-24T02:51:37.574 INFO:teuthology.orchestra.run.smithi152.stderr:mon is available 2024-01-24T02:51:37.574 INFO:teuthology.orchestra.run.smithi152.stderr:Assimilating anything we can from ceph.conf... 2024-01-24T02:51:38.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:37 smithi152 bash[15683]: cluster 2024-01-24T02:51:36.705406+0000 mon.smithi152 (mon.0) 2 : cluster [INF] mon.smithi152 is new leader, mons smithi152 in quorum (ranks 0) 2024-01-24T02:51:38.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:37 smithi152 bash[15683]: cluster 2024-01-24T02:51:36.706998+0000 mon.smithi152 (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {smithi152=[v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0]} removed_ranks: {} 2024-01-24T02:51:38.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:37 smithi152 bash[15683]: cluster 2024-01-24T02:51:36.716260+0000 mon.smithi152 (mon.0) 4 : cluster [DBG] fsmap 2024-01-24T02:51:38.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:37 smithi152 bash[15683]: cluster 2024-01-24T02:51:36.726235+0000 mon.smithi152 (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-01-24T02:51:38.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:37 smithi152 bash[15683]: cluster 2024-01-24T02:51:36.727223+0000 mon.smithi152 (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2024-01-24T02:51:38.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:37 smithi152 bash[15683]: audit 2024-01-24T02:51:37.054013+0000 mon.smithi152 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.152:0/4199159937' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-01-24T02:51:38.771 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 2024-01-24T02:51:38.772 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: [global] 2024-01-24T02:51:38.772 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: fsid = 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:51:38.772 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: mon_host = [v2:172.21.15.152:3300,v1:172.21.15.152:6789] 2024-01-24T02:51:38.772 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-01-24T02:51:38.772 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-01-24T02:51:38.772 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-01-24T02:51:38.772 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-01-24T02:51:38.772 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 2024-01-24T02:51:38.772 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: [mgr] 2024-01-24T02:51:38.772 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-01-24T02:51:38.772 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 2024-01-24T02:51:38.773 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: [osd] 2024-01-24T02:51:38.773 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-01-24T02:51:38.773 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-01-24T02:51:39.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:38 smithi152 bash[15683]: audit 2024-01-24T02:51:38.763238+0000 mon.smithi152 (mon.0) 8 : audit [INF] from='client.? 172.21.15.152:0/1657716103' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-01-24T02:51:39.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:38 smithi152 bash[15683]: audit 2024-01-24T02:51:38.768983+0000 mon.smithi152 (mon.0) 9 : audit [INF] from='client.? 172.21.15.152:0/1657716103' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-01-24T02:51:39.219 INFO:teuthology.orchestra.run.smithi152.stderr:Generating new minimal ceph.conf... 2024-01-24T02:51:40.796 INFO:teuthology.orchestra.run.smithi152.stderr:Restarting the monitor... 2024-01-24T02:51:40.807 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:40 smithi152 bash[15683]: audit 2024-01-24T02:51:40.325585+0000 mon.smithi152 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.152:0/267043443' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:51:41.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:40 smithi152 systemd[1]: Stopping Ceph mon.smithi152 for 676f9788-ba63-11ee-95b1-87774f69a715... 2024-01-24T02:51:41.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:40 smithi152 bash[16219]: Error response from daemon: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-mon.smithi152 2024-01-24T02:51:41.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:40 smithi152 bash[15683]: debug 2024-01-24T02:51:40.980+0000 7f597b0c7700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi152 -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-24T02:51:41.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:40 smithi152 bash[15683]: debug 2024-01-24T02:51:40.980+0000 7f597b0c7700 -1 mon.smithi152@0(leader) e1 *** Got Signal Terminated *** 2024-01-24T02:51:41.723 INFO:teuthology.orchestra.run.smithi152.stderr:Setting public_network to 172.21.0.0/20,172.21.15.254/32 in mon config section 2024-01-24T02:51:42.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:41 smithi152 bash[16219]: ceph-676f9788-ba63-11ee-95b1-87774f69a715-mon-smithi152 2024-01-24T02:51:42.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:41 smithi152 systemd[1]: Stopped Ceph mon.smithi152 for 676f9788-ba63-11ee-95b1-87774f69a715. 2024-01-24T02:51:42.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:41 smithi152 systemd[1]: Started Ceph mon.smithi152 for 676f9788-ba63-11ee-95b1-87774f69a715. 2024-01-24T02:51:43.107 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.024+0000 7fb8805bb880 0 set uid:gid to 167:167 (ceph:ceph) 2024-01-24T02:51:43.107 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.024+0000 7fb8805bb880 0 ceph version 16.2.14-449-ga70aebef (a70aebef70df6ec2d957347ccbfc484e0573dd5f) pacific (stable), process ceph-mon, pid 8 2024-01-24T02:51:43.107 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.024+0000 7fb8805bb880 0 pidfile_write: ignore empty --pid-file 2024-01-24T02:51:43.107 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 0 load: jerasure load: lrc load: isa 2024-01-24T02:51:43.107 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: RocksDB version: 6.8.1 2024-01-24T02:51:43.107 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-01-24T02:51:43.107 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Compile date Jan 11 2024 2024-01-24T02:51:43.108 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: DB SUMMARY 2024-01-24T02:51:43.108 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: CURRENT file: CURRENT 2024-01-24T02:51:43.108 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: IDENTITY file: IDENTITY 2024-01-24T02:51:43.108 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 131 Bytes 2024-01-24T02:51:43.108 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi152/store.db dir, Total Num: 1, files: 000004.sst 2024-01-24T02:51:43.108 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi152/store.db: 000006.log size: 86549 ; 2024-01-24T02:51:43.108 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.error_if_exists: 0 2024-01-24T02:51:43.108 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.create_if_missing: 0 2024-01-24T02:51:43.108 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.paranoid_checks: 1 2024-01-24T02:51:43.108 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.env: 0x564c917ef080 2024-01-24T02:51:43.108 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.fs: Posix File System 2024-01-24T02:51:43.108 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.info_log: 0x564c93a4c520 2024-01-24T02:51:43.108 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_file_opening_threads: 16 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.statistics: (nil) 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.use_fsync: 0 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_log_file_size: 0 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.keep_log_file_num: 1000 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.recycle_log_file_num: 0 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.allow_fallocate: 1 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.allow_mmap_reads: 0 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.allow_mmap_writes: 0 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.use_direct_reads: 0 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.create_missing_column_families: 0 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.db_log_dir: 2024-01-24T02:51:43.109 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi152/store.db 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_subcompactions: 1 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_background_flushes: -1 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.advise_random_on_open: 1 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.db_write_buffer_size: 0 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.write_buffer_manager: 0x564c94740420 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-01-24T02:51:43.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.rate_limiter: (nil) 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.wal_recovery_mode: 2 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.enable_thread_tracking: 0 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.enable_pipelined_write: 0 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.unordered_write: 0 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.row_cache: None 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.wal_filter: None 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-01-24T02:51:43.111 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.allow_ingest_behind: 0 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.preserve_deletes: 0 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.two_write_queues: 0 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.manual_wal_flush: 0 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.atomic_flush: 0 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.log_readahead_size: 0 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_background_jobs: 2 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_background_compactions: -1 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-01-24T02:51:43.112 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-01-24T02:51:43.113 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_total_wal_size: 0 2024-01-24T02:51:43.113 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-01-24T02:51:43.113 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-01-24T02:51:43.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-01-24T02:51:43.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-01-24T02:51:43.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_open_files: -1 2024-01-24T02:51:43.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.bytes_per_sync: 0 2024-01-24T02:51:43.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-01-24T02:51:43.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-01-24T02:51:43.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compaction_readahead_size: 0 2024-01-24T02:51:43.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Compression algorithms supported: 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: kZSTD supported: 0 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: kXpressCompression supported: 0 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: kLZ4HCCompression supported: 1 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: kLZ4Compression supported: 1 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: kBZip2Compression supported: 0 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: kZlibCompression supported: 1 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: kSnappyCompression supported: 1 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi152/store.db/MANIFEST-000005 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.merge_operator: 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compaction_filter: None 2024-01-24T02:51:43.115 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compaction_filter_factory: None 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x564c939efd28) 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: cache_index_and_filter_blocks: 1 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: cache_index_and_filter_blocks_with_high_priority: 0 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: pin_top_level_index_and_filter: 1 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: index_type: 0 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: data_block_index_type: 0 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: index_shortening: 1 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: data_block_hash_table_util_ratio: 0.750000 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: hash_index_allow_collision: 1 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: checksum: 1 2024-01-24T02:51:43.116 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: no_block_cache: 0 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: block_cache: 0x564c93a26f10 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: block_cache_name: BinnedLRUCache 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: block_cache_options: 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: capacity : 536870912 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: num_shard_bits : 4 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: strict_capacity_limit : 0 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: high_pri_pool_ratio: 0.000 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: block_cache_compressed: (nil) 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: persistent_cache: (nil) 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: block_size: 4096 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: block_size_deviation: 10 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: block_restart_interval: 16 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: index_block_restart_interval: 1 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: metadata_block_size: 4096 2024-01-24T02:51:43.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: partition_filters: 0 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: use_delta_encoding: 1 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: filter_policy: rocksdb.BuiltinBloomFilter 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: whole_key_filtering: 1 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: verify_compression: 0 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: read_amp_bytes_per_bit: 0 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: format_version: 2 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: enable_index_compression: 1 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: block_align: 0 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.write_buffer_size: 33554432 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_write_buffer_number: 2 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compression: NoCompression 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.bottommost_compression: Disabled 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.prefix_extractor: nullptr 2024-01-24T02:51:43.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.num_levels: 7 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compression_opts.level: 32767 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compression_opts.strategy: 0 2024-01-24T02:51:43.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compression_opts.enabled: false 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.target_file_size_base: 67108864 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-01-24T02:51:43.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.arena_block_size: 4194304 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.disable_auto_compactions: 0 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-01-24T02:51:43.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.table_properties_collectors: 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.inplace_update_support: 0 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.bloom_locality: 0 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.max_successive_merges: 0 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-01-24T02:51:43.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.paranoid_file_checks: 0 2024-01-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.force_consistency_checks: 0 2024-01-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.report_bg_io_stats: 0 2024-01-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.ttl: 2592000 2024-01-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-01-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi152/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-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 4 2024-01-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706064703036886, "job": 1, "event": "recovery_started", "log_files": [6]} 2024-01-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #6 mode 2 2024-01-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 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-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706064703038115, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 7, "file_size": 83422, "table_properties": {"data_size": 81689, "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": 76201, "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": 1706064703, "oldest_key_time": 3, "file_creation_time": 0}} 2024-01-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.032+0000 7fb8805bb880 4 rocksdb: [version_set.cc:3826] Creating manifest 8 2024-01-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.036+0000 7fb8805bb880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706064703038955, "job": 1, "event": "recovery_finished"} 2024-01-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.036+0000 7fb8805bb880 4 rocksdb: DB pointer 0x564c93aef800 2024-01-24T02:51:43.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.036+0000 7fb8673b0700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-01-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.036+0000 7fb8673b0700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-01-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: ** DB Stats ** 2024-01-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: 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-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-01-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: 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-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-01-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: ** Compaction Stats [default] ** 2024-01-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: 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-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: L0 2/0 83.16 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 98.3 0.00 0.00 1 0.001 0 0 2024-01-24T02:51:43.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Sum 2/0 83.16 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 98.3 0.00 0.00 1 0.001 0 0 2024-01-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 98.3 0.00 0.00 1 0.001 0 0 2024-01-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: ** Compaction Stats [default] ** 2024-01-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: 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-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 98.3 0.00 0.00 1 0.001 0 0 2024-01-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: AddFile(Total Files): cumulative 0, interval 0 2024-01-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: AddFile(Keys): cumulative 0, interval 0 2024-01-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Cumulative compaction: 0.00 GB write, 14.40 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Interval compaction: 0.00 GB write, 14.40 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-24T02:51:43.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: 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-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: ** File Read Latency Histogram By Level [default] ** 2024-01-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: ** Compaction Stats [default] ** 2024-01-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: 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-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: L0 2/0 83.16 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 98.3 0.00 0.00 1 0.001 0 0 2024-01-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Sum 2/0 83.16 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 98.3 0.00 0.00 1 0.001 0 0 2024-01-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: 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-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: ** Compaction Stats [default] ** 2024-01-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: 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-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 98.3 0.00 0.00 1 0.001 0 0 2024-01-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-24T02:51:43.126 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: AddFile(Total Files): cumulative 0, interval 0 2024-01-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: AddFile(Keys): cumulative 0, interval 0 2024-01-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: Cumulative compaction: 0.00 GB write, 14.24 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: 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-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: 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-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: ** File Read Latency Histogram By Level [default] ** 2024-01-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.040+0000 7fb8805bb880 0 starting mon.smithi152 rank 0 at public addrs [v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0] at bind addrs [v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi152 fsid 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.044+0000 7fb8805bb880 1 mon.smithi152@-1(???) e1 preinit fsid 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.044+0000 7fb8805bb880 0 mon.smithi152@-1(???).mds e1 new map 2024-01-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.044+0000 7fb8805bb880 0 mon.smithi152@-1(???).mds e1 print_map 2024-01-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: e1 2024-01-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: enable_multiple, ever_enabled_multiple: 1,1 2024-01-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: 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-24T02:51:43.127 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: legacy client fscid: -1 2024-01-24T02:51:43.128 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: 2024-01-24T02:51:43.128 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: No filesystems configured 2024-01-24T02:51:43.128 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.044+0000 7fb8805bb880 0 mon.smithi152@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-01-24T02:51:43.128 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.044+0000 7fb8805bb880 0 mon.smithi152@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-01-24T02:51:43.128 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.044+0000 7fb8805bb880 0 mon.smithi152@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-01-24T02:51:43.128 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: audit 2024-01-24T02:51:40.325585+0000 mon.smithi152 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.152:0/267043443' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:51:43.128 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: debug 2024-01-24T02:51:43.044+0000 7fb8805bb880 1 mon.smithi152@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-01-24T02:51:43.128 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: cluster 2024-01-24T02:51:43.052913+0000 mon.smithi152 (mon.0) 1 : cluster [INF] mon.smithi152 is new leader, mons smithi152 in quorum (ranks 0) 2024-01-24T02:51:43.128 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: cluster 2024-01-24T02:51:43.053031+0000 mon.smithi152 (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {smithi152=[v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0]} removed_ranks: {} 2024-01-24T02:51:43.128 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: cluster 2024-01-24T02:51:43.053651+0000 mon.smithi152 (mon.0) 3 : cluster [DBG] fsmap 2024-01-24T02:51:43.128 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: cluster 2024-01-24T02:51:43.053717+0000 mon.smithi152 (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-01-24T02:51:43.128 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:43 smithi152 bash[16344]: cluster 2024-01-24T02:51:43.054244+0000 mon.smithi152 (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2024-01-24T02:51:43.969 INFO:teuthology.orchestra.run.smithi152.stderr:Wrote config to /etc/ceph/ceph.conf 2024-01-24T02:51:43.970 INFO:teuthology.orchestra.run.smithi152.stderr:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-01-24T02:51:43.970 INFO:teuthology.orchestra.run.smithi152.stderr:Creating mgr... 2024-01-24T02:51:43.970 INFO:teuthology.orchestra.run.smithi152.stderr:Verifying port 9283 ... 2024-01-24T02:51:44.104 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: Failed to reset failed state of unit ceph-676f9788-ba63-11ee-95b1-87774f69a715@mgr.smithi152.jkoscf.service: Unit ceph-676f9788-ba63-11ee-95b1-87774f69a715@mgr.smithi152.jkoscf.service is not loaded. 2024-01-24T02:51:44.112 INFO:teuthology.orchestra.run.smithi152.stderr:systemctl: Created symlink /etc/systemd/system/ceph-676f9788-ba63-11ee-95b1-87774f69a715.target.wants/ceph-676f9788-ba63-11ee-95b1-87774f69a715@mgr.smithi152.jkoscf.service -> /etc/systemd/system/ceph-676f9788-ba63-11ee-95b1-87774f69a715@.service. 2024-01-24T02:51:44.212 INFO:teuthology.orchestra.run.smithi152.stderr:firewalld does not appear to be present 2024-01-24T02:51:44.212 INFO:teuthology.orchestra.run.smithi152.stderr:Not possible to enable service . firewalld.service is not available 2024-01-24T02:51:44.212 INFO:teuthology.orchestra.run.smithi152.stderr:firewalld does not appear to be present 2024-01-24T02:51:44.212 INFO:teuthology.orchestra.run.smithi152.stderr:Not possible to open ports <[9283]>. firewalld.service is not available 2024-01-24T02:51:44.212 INFO:teuthology.orchestra.run.smithi152.stderr:Waiting for mgr to start... 2024-01-24T02:51:44.212 INFO:teuthology.orchestra.run.smithi152.stderr:Waiting for mgr... 2024-01-24T02:51:44.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:44 smithi152 bash[16344]: audit 2024-01-24T02:51:43.387765+0000 mon.smithi152 (mon.0) 6 : audit [INF] from='client.? 172.21.15.152:0/2595080256' entity='client.admin' 2024-01-24T02:51:45.971 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 2024-01-24T02:51:45.971 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: { 2024-01-24T02:51:45.971 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "fsid": "676f9788-ba63-11ee-95b1-87774f69a715", 2024-01-24T02:51:45.971 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "health": { 2024-01-24T02:51:45.971 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-01-24T02:51:45.971 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "checks": {}, 2024-01-24T02:51:45.971 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "mutes": [] 2024-01-24T02:51:45.971 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:45.971 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-01-24T02:51:45.972 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "quorum": [ 2024-01-24T02:51:45.972 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 0 2024-01-24T02:51:45.972 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: ], 2024-01-24T02:51:45.972 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "quorum_names": [ 2024-01-24T02:51:45.972 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "smithi152" 2024-01-24T02:51:45.973 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: ], 2024-01-24T02:51:45.973 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "quorum_age": 2, 2024-01-24T02:51:45.973 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "monmap": { 2024-01-24T02:51:45.974 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-24T02:51:45.974 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-01-24T02:51:45.974 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_mons": 1 2024-01-24T02:51:45.974 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:45.974 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "osdmap": { 2024-01-24T02:51:45.974 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-24T02:51:45.974 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_osds": 0, 2024-01-24T02:51:45.974 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-01-24T02:51:45.974 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-01-24T02:51:45.974 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-01-24T02:51:45.978 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-01-24T02:51:45.978 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-01-24T02:51:45.978 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:45.978 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "pgmap": { 2024-01-24T02:51:45.978 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-01-24T02:51:45.978 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-01-24T02:51:45.978 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_pools": 0, 2024-01-24T02:51:45.978 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_objects": 0, 2024-01-24T02:51:45.979 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-01-24T02:51:45.979 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-01-24T02:51:45.979 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-01-24T02:51:45.979 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "bytes_total": 0 2024-01-24T02:51:45.979 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:45.979 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "fsmap": { 2024-01-24T02:51:45.979 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-24T02:51:45.979 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "by_rank": [], 2024-01-24T02:51:45.979 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "up:standby": 0 2024-01-24T02:51:45.979 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:45.979 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "mgrmap": { 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "available": false, 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "modules": [ 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "iostat", 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "nfs", 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "restful" 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: ], 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "services": {} 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "servicemap": { 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "modified": "2024-01-24T02:51:36.711527+0000", 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "services": {} 2024-01-24T02:51:45.980 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:45.981 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "progress_events": {} 2024-01-24T02:51:45.981 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: } 2024-01-24T02:51:46.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:46 smithi152 bash[16344]: audit 2024-01-24T02:51:45.968706+0000 mon.smithi152 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.152:0/2570702566' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-01-24T02:51:46.513 INFO:teuthology.orchestra.run.smithi152.stderr:mgr not available, waiting (1/15)... 2024-01-24T02:51:49.887 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 2024-01-24T02:51:49.887 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: { 2024-01-24T02:51:49.888 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "fsid": "676f9788-ba63-11ee-95b1-87774f69a715", 2024-01-24T02:51:49.888 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "health": { 2024-01-24T02:51:49.888 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-01-24T02:51:49.888 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "checks": {}, 2024-01-24T02:51:49.888 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "mutes": [] 2024-01-24T02:51:49.888 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:49.888 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-01-24T02:51:49.888 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "quorum": [ 2024-01-24T02:51:49.888 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 0 2024-01-24T02:51:49.888 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: ], 2024-01-24T02:51:49.888 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "quorum_names": [ 2024-01-24T02:51:49.888 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "smithi152" 2024-01-24T02:51:49.888 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: ], 2024-01-24T02:51:49.889 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "quorum_age": 6, 2024-01-24T02:51:49.889 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "monmap": { 2024-01-24T02:51:49.889 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-24T02:51:49.889 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-01-24T02:51:49.889 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_mons": 1 2024-01-24T02:51:49.889 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:49.889 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "osdmap": { 2024-01-24T02:51:49.889 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-24T02:51:49.889 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_osds": 0, 2024-01-24T02:51:49.889 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-01-24T02:51:49.889 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-01-24T02:51:49.889 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-01-24T02:51:49.893 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-01-24T02:51:49.893 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-01-24T02:51:49.893 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "pgmap": { 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_pools": 0, 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_objects": 0, 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "bytes_total": 0 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "fsmap": { 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "by_rank": [], 2024-01-24T02:51:49.894 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "up:standby": 0 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "mgrmap": { 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "available": false, 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "modules": [ 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "iostat", 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "nfs", 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "restful" 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: ], 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "services": {} 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "servicemap": { 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "modified": "2024-01-24T02:51:36.711527+0000", 2024-01-24T02:51:49.895 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "services": {} 2024-01-24T02:51:49.896 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:49.896 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "progress_events": {} 2024-01-24T02:51:49.896 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: } 2024-01-24T02:51:50.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:49 smithi152 bash[16344]: audit 2024-01-24T02:51:49.883823+0000 mon.smithi152 (mon.0) 8 : audit [DBG] from='client.? 172.21.15.152:0/3741939779' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-01-24T02:51:50.435 INFO:teuthology.orchestra.run.smithi152.stderr:mgr not available, waiting (2/15)... 2024-01-24T02:51:52.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:52 smithi152 bash[16344]: cluster 2024-01-24T02:51:52.072714+0000 mon.smithi152 (mon.0) 9 : cluster [INF] Activating manager daemon smithi152.jkoscf 2024-01-24T02:51:52.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:52 smithi152 bash[16344]: cluster 2024-01-24T02:51:52.078708+0000 mon.smithi152 (mon.0) 10 : cluster [DBG] mgrmap e2: smithi152.jkoscf(active, starting, since 0.00620947s) 2024-01-24T02:51:52.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:52 smithi152 bash[16344]: audit 2024-01-24T02:51:52.081356+0000 mon.smithi152 (mon.0) 11 : audit [DBG] from='mgr.14100 172.21.15.152:0/1613263607' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-24T02:51:52.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:52 smithi152 bash[16344]: audit 2024-01-24T02:51:52.081713+0000 mon.smithi152 (mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.152:0/1613263607' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-24T02:51:52.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:52 smithi152 bash[16344]: audit 2024-01-24T02:51:52.082235+0000 mon.smithi152 (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.152:0/1613263607' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-24T02:51:52.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:52 smithi152 bash[16344]: audit 2024-01-24T02:51:52.082928+0000 mon.smithi152 (mon.0) 14 : audit [DBG] from='mgr.14100 172.21.15.152:0/1613263607' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi152"}]: dispatch 2024-01-24T02:51:52.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:52 smithi152 bash[16344]: audit 2024-01-24T02:51:52.083790+0000 mon.smithi152 (mon.0) 15 : audit [DBG] from='mgr.14100 172.21.15.152:0/1613263607' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mgr metadata", "who": "smithi152.jkoscf", "id": "smithi152.jkoscf"}]: dispatch 2024-01-24T02:51:52.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:52 smithi152 bash[16344]: cluster 2024-01-24T02:51:52.089789+0000 mon.smithi152 (mon.0) 16 : cluster [INF] Manager daemon smithi152.jkoscf is now available 2024-01-24T02:51:52.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:52 smithi152 bash[16344]: audit 2024-01-24T02:51:52.101385+0000 mon.smithi152 (mon.0) 17 : audit [INF] from='mgr.14100 172.21.15.152:0/1613263607' entity='mgr.smithi152.jkoscf' 2024-01-24T02:51:52.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:52 smithi152 bash[16344]: audit 2024-01-24T02:51:52.112230+0000 mon.smithi152 (mon.0) 18 : audit [INF] from='mgr.14100 172.21.15.152:0/1613263607' entity='mgr.smithi152.jkoscf' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi152.jkoscf/mirror_snapshot_schedule"}]: dispatch 2024-01-24T02:51:52.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:52 smithi152 bash[16344]: audit 2024-01-24T02:51:52.117416+0000 mon.smithi152 (mon.0) 19 : audit [INF] from='mgr.14100 172.21.15.152:0/1613263607' entity='mgr.smithi152.jkoscf' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi152.jkoscf/trash_purge_schedule"}]: dispatch 2024-01-24T02:51:52.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:52 smithi152 bash[16344]: audit 2024-01-24T02:51:52.123183+0000 mon.smithi152 (mon.0) 20 : audit [INF] from='mgr.14100 172.21.15.152:0/1613263607' entity='mgr.smithi152.jkoscf' 2024-01-24T02:51:53.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:53 smithi152 bash[16344]: audit 2024-01-24T02:51:52.125979+0000 mon.smithi152 (mon.0) 21 : audit [INF] from='mgr.14100 172.21.15.152:0/1613263607' entity='mgr.smithi152.jkoscf' 2024-01-24T02:51:53.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:53 smithi152 bash[16344]: cluster 2024-01-24T02:51:53.083260+0000 mon.smithi152 (mon.0) 22 : cluster [DBG] mgrmap e3: smithi152.jkoscf(active, since 1.01077s) 2024-01-24T02:51:53.992 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 2024-01-24T02:51:53.992 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: { 2024-01-24T02:51:53.992 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "fsid": "676f9788-ba63-11ee-95b1-87774f69a715", 2024-01-24T02:51:53.992 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "health": { 2024-01-24T02:51:53.992 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-01-24T02:51:53.993 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "checks": {}, 2024-01-24T02:51:53.993 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "mutes": [] 2024-01-24T02:51:53.997 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:53.998 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-01-24T02:51:53.998 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "quorum": [ 2024-01-24T02:51:53.998 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 0 2024-01-24T02:51:53.998 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: ], 2024-01-24T02:51:53.998 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "quorum_names": [ 2024-01-24T02:51:53.998 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "smithi152" 2024-01-24T02:51:53.998 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: ], 2024-01-24T02:51:53.998 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "quorum_age": 10, 2024-01-24T02:51:53.998 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "monmap": { 2024-01-24T02:51:53.998 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-24T02:51:53.998 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-01-24T02:51:53.998 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_mons": 1 2024-01-24T02:51:53.998 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "osdmap": { 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_osds": 0, 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "pgmap": { 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_pools": 0, 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_objects": 0, 2024-01-24T02:51:53.999 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-01-24T02:51:54.000 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-01-24T02:51:54.000 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-01-24T02:51:54.000 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "bytes_total": 0 2024-01-24T02:51:54.000 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:54.000 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "fsmap": { 2024-01-24T02:51:54.000 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-24T02:51:54.000 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "by_rank": [], 2024-01-24T02:51:54.000 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "up:standby": 0 2024-01-24T02:51:54.000 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:54.000 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "mgrmap": { 2024-01-24T02:51:54.000 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "available": true, 2024-01-24T02:51:54.000 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-01-24T02:51:54.000 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "modules": [ 2024-01-24T02:51:54.001 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "iostat", 2024-01-24T02:51:54.001 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "nfs", 2024-01-24T02:51:54.002 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "restful" 2024-01-24T02:51:54.002 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: ], 2024-01-24T02:51:54.002 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "services": {} 2024-01-24T02:51:54.002 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:54.002 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "servicemap": { 2024-01-24T02:51:54.002 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-24T02:51:54.002 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "modified": "2024-01-24T02:51:36.711527+0000", 2024-01-24T02:51:54.002 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "services": {} 2024-01-24T02:51:54.002 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: }, 2024-01-24T02:51:54.003 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "progress_events": {} 2024-01-24T02:51:54.003 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: } 2024-01-24T02:51:54.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:54 smithi152 bash[16344]: audit 2024-01-24T02:51:53.989955+0000 mon.smithi152 (mon.0) 23 : audit [DBG] from='client.? 172.21.15.152:0/4201820620' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-01-24T02:51:54.509 INFO:teuthology.orchestra.run.smithi152.stderr:mgr is available 2024-01-24T02:51:55.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:55 smithi152 bash[16344]: cluster 2024-01-24T02:51:54.132552+0000 mon.smithi152 (mon.0) 24 : cluster [DBG] mgrmap e4: smithi152.jkoscf(active, since 2s) 2024-01-24T02:51:55.815 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 2024-01-24T02:51:55.815 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: [global] 2024-01-24T02:51:55.815 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: fsid = 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:51:55.815 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-01-24T02:51:55.815 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-01-24T02:51:55.815 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-01-24T02:51:55.816 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-01-24T02:51:55.817 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 2024-01-24T02:51:55.817 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: [mgr] 2024-01-24T02:51:55.817 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-01-24T02:51:55.817 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 2024-01-24T02:51:55.817 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: [osd] 2024-01-24T02:51:55.817 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-01-24T02:51:55.817 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-01-24T02:51:56.349 INFO:teuthology.orchestra.run.smithi152.stderr:Enabling cephadm module... 2024-01-24T02:51:56.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:56 smithi152 bash[16344]: audit 2024-01-24T02:51:55.812225+0000 mon.smithi152 (mon.0) 25 : audit [INF] from='client.? 172.21.15.152:0/783039467' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-01-24T02:51:58.146 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:57 smithi152 bash[16344]: audit 2024-01-24T02:51:57.797762+0000 mon.smithi152 (mon.0) 26 : audit [INF] from='client.? 172.21.15.152:0/1116645558' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-01-24T02:51:59.318 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:58 smithi152 bash[16344]: audit 2024-01-24T02:51:57.854720+0000 mon.smithi152 (mon.0) 27 : audit [INF] from='client.? 172.21.15.152:0/1116645558' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-01-24T02:51:59.319 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:51:58 smithi152 bash[16344]: cluster 2024-01-24T02:51:57.854884+0000 mon.smithi152 (mon.0) 28 : cluster [DBG] mgrmap e5: smithi152.jkoscf(active, since 5s) 2024-01-24T02:52:00.084 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: { 2024-01-24T02:52:00.084 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 5, 2024-01-24T02:52:00.084 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "available": true, 2024-01-24T02:52:00.084 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "active_name": "smithi152.jkoscf", 2024-01-24T02:52:00.085 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_standby": 0 2024-01-24T02:52:00.085 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: } 2024-01-24T02:52:00.551 INFO:teuthology.orchestra.run.smithi152.stderr:Waiting for the mgr to restart... 2024-01-24T02:52:00.551 INFO:teuthology.orchestra.run.smithi152.stderr:Waiting for mgr epoch 5... 2024-01-24T02:52:00.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:00 smithi152 bash[16344]: audit 2024-01-24T02:52:00.082747+0000 mon.smithi152 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.152:0/1218966981' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-01-24T02:52:04.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:04 smithi152 bash[16344]: cluster 2024-01-24T02:52:04.164140+0000 mon.smithi152 (mon.0) 30 : cluster [INF] Active manager daemon smithi152.jkoscf restarted 2024-01-24T02:52:04.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:04 smithi152 bash[16344]: cluster 2024-01-24T02:52:04.164613+0000 mon.smithi152 (mon.0) 31 : cluster [INF] Activating manager daemon smithi152.jkoscf 2024-01-24T02:52:04.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:04 smithi152 bash[16344]: cluster 2024-01-24T02:52:04.169575+0000 mon.smithi152 (mon.0) 32 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-01-24T02:52:04.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:04 smithi152 bash[16344]: cluster 2024-01-24T02:52:04.169821+0000 mon.smithi152 (mon.0) 33 : cluster [DBG] mgrmap e6: smithi152.jkoscf(active, starting, since 0.00536257s) 2024-01-24T02:52:04.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:04 smithi152 bash[16344]: audit 2024-01-24T02:52:04.171462+0000 mon.smithi152 (mon.0) 34 : audit [DBG] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi152"}]: dispatch 2024-01-24T02:52:04.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:04 smithi152 bash[16344]: audit 2024-01-24T02:52:04.173931+0000 mon.smithi152 (mon.0) 35 : audit [DBG] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mgr metadata", "who": "smithi152.jkoscf", "id": "smithi152.jkoscf"}]: dispatch 2024-01-24T02:52:04.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:04 smithi152 bash[16344]: audit 2024-01-24T02:52:04.175446+0000 mon.smithi152 (mon.0) 36 : audit [DBG] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-24T02:52:04.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:04 smithi152 bash[16344]: audit 2024-01-24T02:52:04.175744+0000 mon.smithi152 (mon.0) 37 : audit [DBG] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-24T02:52:04.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:04 smithi152 bash[16344]: audit 2024-01-24T02:52:04.176032+0000 mon.smithi152 (mon.0) 38 : audit [DBG] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-24T02:52:04.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:04 smithi152 bash[16344]: cluster 2024-01-24T02:52:04.181165+0000 mon.smithi152 (mon.0) 39 : cluster [INF] Manager daemon smithi152.jkoscf is now available 2024-01-24T02:52:04.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:04 smithi152 bash[16344]: audit 2024-01-24T02:52:04.201354+0000 mon.smithi152 (mon.0) 40 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:05.193 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: { 2024-01-24T02:52:05.193 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "mgrmap_epoch": 7, 2024-01-24T02:52:05.194 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "initialized": true 2024-01-24T02:52:05.194 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: } 2024-01-24T02:52:05.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:05 smithi152 bash[16344]: cephadm 2024-01-24T02:52:04.196765+0000 mgr.smithi152.jkoscf (mgr.14116) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-01-24T02:52:05.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:05 smithi152 bash[16344]: audit 2024-01-24T02:52:04.322084+0000 mon.smithi152 (mon.0) 41 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:05.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:05 smithi152 bash[16344]: audit 2024-01-24T02:52:04.323965+0000 mon.smithi152 (mon.0) 42 : audit [DBG] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:52:05.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:05 smithi152 bash[16344]: audit 2024-01-24T02:52:04.326612+0000 mon.smithi152 (mon.0) 43 : audit [DBG] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:52:05.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:05 smithi152 bash[16344]: audit 2024-01-24T02:52:04.331793+0000 mon.smithi152 (mon.0) 44 : audit [DBG] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:52:05.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:05 smithi152 bash[16344]: audit 2024-01-24T02:52:04.354737+0000 mon.smithi152 (mon.0) 45 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi152.jkoscf/mirror_snapshot_schedule"}]: dispatch 2024-01-24T02:52:05.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:05 smithi152 bash[16344]: audit 2024-01-24T02:52:04.361212+0000 mon.smithi152 (mon.0) 46 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi152.jkoscf/trash_purge_schedule"}]: dispatch 2024-01-24T02:52:05.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:05 smithi152 bash[16344]: cluster 2024-01-24T02:52:05.176479+0000 mon.smithi152 (mon.0) 47 : cluster [DBG] mgrmap e7: smithi152.jkoscf(active, since 1.01201s) 2024-01-24T02:52:05.819 INFO:teuthology.orchestra.run.smithi152.stderr:mgr epoch 5 is available 2024-01-24T02:52:05.819 INFO:teuthology.orchestra.run.smithi152.stderr:Setting orchestrator backend to cephadm... 2024-01-24T02:52:06.631 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:06 smithi152 bash[16344]: audit 2024-01-24T02:52:05.174587+0000 mgr.smithi152.jkoscf (mgr.14116) 2 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-01-24T02:52:06.631 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:06 smithi152 bash[16344]: audit 2024-01-24T02:52:05.191499+0000 mgr.smithi152.jkoscf (mgr.14116) 3 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-01-24T02:52:07.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:07 smithi152 bash[16344]: cluster 2024-01-24T02:52:06.328367+0000 mon.smithi152 (mon.0) 48 : cluster [DBG] mgrmap e8: smithi152.jkoscf(active, since 2s) 2024-01-24T02:52:07.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:07 smithi152 bash[16344]: audit 2024-01-24T02:52:07.254428+0000 mon.smithi152 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:07.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:07 smithi152 bash[16344]: audit 2024-01-24T02:52:07.314715+0000 mon.smithi152 (mon.0) 50 : audit [DBG] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:52:08.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:08 smithi152 bash[16344]: audit 2024-01-24T02:52:07.245451+0000 mgr.smithi152.jkoscf (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-24T02:52:09.104 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: value unchanged 2024-01-24T02:52:09.623 INFO:teuthology.orchestra.run.smithi152.stderr:Generating ssh key... 2024-01-24T02:52:10.272 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:09 smithi152 bash[16344]: audit 2024-01-24T02:52:09.102735+0000 mgr.smithi152.jkoscf (mgr.14116) 5 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:52:12.439 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:12 smithi152 bash[16344]: audit 2024-01-24T02:52:10.909059+0000 mgr.smithi152.jkoscf (mgr.14116) 6 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:52:12.439 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:12 smithi152 bash[16344]: cephadm 2024-01-24T02:52:10.909513+0000 mgr.smithi152.jkoscf (mgr.14116) 7 : cephadm [INF] Generating ssh key... 2024-01-24T02:52:12.439 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:12 smithi152 bash[16344]: audit 2024-01-24T02:52:11.158329+0000 mon.smithi152 (mon.0) 51 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:12.439 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:12 smithi152 bash[16344]: audit 2024-01-24T02:52:11.162735+0000 mon.smithi152 (mon.0) 52 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:12.991 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC6dnCREblnldfaAqk5F2jzufqU/NfNby3zT/cA2sEqqqSxFNebnD0E2gloc/gDZP7Ylr08GWM0cx0K6/CUPxAtHDryJJHH6L7WojP6y+9sfvOeAMYUsQECq+9qsxisQy0y5M40oIiOEbvyOtkr8eac1qFAMVqNELPfThFtgpHv5bxcGCScJLGFTOpmHEvKcUXdvC3ZOGJQI2oosXbejCJy4cqTEHLRz6dpSck8bYg5PCsUeIF8lKaG2SnkWjS2NvtCV0plGvH/VlyN9HBvQ3eD0JSKMdEPygnplLf0fp8Q7azrfIvm3UJjjmXrtM8IVMxlltFM1OZqO08EhorgFMmw2Kw5KXUqqVWtps7Kl8ykCl73IL6uwaPMH0P/6A4DHntrXS+4pjWXY935fc77b4T+rEgFH3vdCt64nrXb/d+bxsp64/0C4f638TwSJdR7dAM7T+E5R8AUM+71LlQ1Y6LSaFqEUExJYKq3q9OcZLkeXoiO5Ukw2eNMv7T65SQDjz0= ceph-676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:52:13.521 INFO:teuthology.orchestra.run.smithi152.stderr:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-01-24T02:52:13.522 INFO:teuthology.orchestra.run.smithi152.stderr:Adding key to root@localhost authorized_keys... 2024-01-24T02:52:13.522 INFO:teuthology.orchestra.run.smithi152.stderr:Adding host smithi152... 2024-01-24T02:52:14.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:14 smithi152 bash[16344]: audit 2024-01-24T02:52:12.990066+0000 mgr.smithi152.jkoscf (mgr.14116) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:52:15.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:15 smithi152 bash[16344]: audit 2024-01-24T02:52:14.864530+0000 mgr.smithi152.jkoscf (mgr.14116) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi152", "addr": "172.21.15.152", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:52:15.682 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: Added host 'smithi152' with addr '172.21.15.152' 2024-01-24T02:52:16.445 INFO:teuthology.orchestra.run.smithi152.stderr:Deploying mon service with default placement... 2024-01-24T02:52:17.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:16 smithi152 bash[16344]: audit 2024-01-24T02:52:15.679708+0000 mon.smithi152 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:17.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:16 smithi152 bash[16344]: cephadm 2024-01-24T02:52:15.680228+0000 mgr.smithi152.jkoscf (mgr.14116) 10 : cephadm [INF] Added host smithi152 2024-01-24T02:52:17.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:16 smithi152 bash[16344]: audit 2024-01-24T02:52:15.709412+0000 mon.smithi152 (mon.0) 54 : audit [DBG] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:52:18.385 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: Scheduled mon update... 2024-01-24T02:52:18.990 INFO:teuthology.orchestra.run.smithi152.stderr:Deploying mgr service with default placement... 2024-01-24T02:52:19.715 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:19 smithi152 bash[16344]: audit 2024-01-24T02:52:18.374826+0000 mgr.smithi152.jkoscf (mgr.14116) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:52:19.715 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:19 smithi152 bash[16344]: cephadm 2024-01-24T02:52:18.377928+0000 mgr.smithi152.jkoscf (mgr.14116) 12 : cephadm [INF] Saving service mon spec with placement count:5 2024-01-24T02:52:19.715 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:19 smithi152 bash[16344]: audit 2024-01-24T02:52:18.383551+0000 mon.smithi152 (mon.0) 55 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:19.715 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:19 smithi152 bash[16344]: audit 2024-01-24T02:52:18.593600+0000 mon.smithi152 (mon.0) 56 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:19.715 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:19 smithi152 bash[16344]: audit 2024-01-24T02:52:18.862744+0000 mon.smithi152 (mon.0) 57 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:20.301 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: Scheduled mgr update... 2024-01-24T02:52:20.815 INFO:teuthology.orchestra.run.smithi152.stderr:Deploying crash service with default placement... 2024-01-24T02:52:21.575 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:21 smithi152 bash[16344]: audit 2024-01-24T02:52:20.293032+0000 mgr.smithi152.jkoscf (mgr.14116) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:52:21.575 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:21 smithi152 bash[16344]: cephadm 2024-01-24T02:52:20.294266+0000 mgr.smithi152.jkoscf (mgr.14116) 14 : cephadm [INF] Saving service mgr spec with placement count:2 2024-01-24T02:52:21.575 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:21 smithi152 bash[16344]: audit 2024-01-24T02:52:20.299108+0000 mon.smithi152 (mon.0) 58 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:22.174 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: Scheduled crash update... 2024-01-24T02:52:22.696 INFO:teuthology.orchestra.run.smithi152.stderr:Deploying prometheus service with default placement... 2024-01-24T02:52:23.427 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:23 smithi152 bash[16344]: audit 2024-01-24T02:52:22.164587+0000 mgr.smithi152.jkoscf (mgr.14116) 15 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:52:23.427 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:23 smithi152 bash[16344]: cephadm 2024-01-24T02:52:22.166961+0000 mgr.smithi152.jkoscf (mgr.14116) 16 : cephadm [INF] Saving service crash spec with placement * 2024-01-24T02:52:23.427 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:23 smithi152 bash[16344]: audit 2024-01-24T02:52:22.171658+0000 mon.smithi152 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:24.117 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: Scheduled prometheus update... 2024-01-24T02:52:24.660 INFO:teuthology.orchestra.run.smithi152.stderr:Deploying grafana service with default placement... 2024-01-24T02:52:25.393 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:25 smithi152 bash[16344]: audit 2024-01-24T02:52:24.109390+0000 mgr.smithi152.jkoscf (mgr.14116) 17 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:52:25.394 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:25 smithi152 bash[16344]: cephadm 2024-01-24T02:52:24.111599+0000 mgr.smithi152.jkoscf (mgr.14116) 18 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-01-24T02:52:25.394 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:25 smithi152 bash[16344]: audit 2024-01-24T02:52:24.115069+0000 mon.smithi152 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:25.394 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:25 smithi152 bash[16344]: cluster 2024-01-24T02:52:24.177256+0000 mgr.smithi152.jkoscf (mgr.14116) 19 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:52:26.053 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: Scheduled grafana update... 2024-01-24T02:52:26.599 INFO:teuthology.orchestra.run.smithi152.stderr:Deploying node-exporter service with default placement... 2024-01-24T02:52:26.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:26 smithi152 bash[16344]: audit 2024-01-24T02:52:25.477280+0000 mon.smithi152 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:26.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:26 smithi152 bash[16344]: audit 2024-01-24T02:52:26.050698+0000 mon.smithi152 (mon.0) 62 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:27.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:27 smithi152 bash[16344]: audit 2024-01-24T02:52:26.043542+0000 mgr.smithi152.jkoscf (mgr.14116) 20 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:52:27.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:27 smithi152 bash[16344]: cephadm 2024-01-24T02:52:26.045752+0000 mgr.smithi152.jkoscf (mgr.14116) 21 : cephadm [INF] Saving service grafana spec with placement count:1 2024-01-24T02:52:27.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:27 smithi152 bash[16344]: cluster 2024-01-24T02:52:26.177784+0000 mgr.smithi152.jkoscf (mgr.14116) 22 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:52:28.031 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: Scheduled node-exporter update... 2024-01-24T02:52:28.556 INFO:teuthology.orchestra.run.smithi152.stderr:Deploying alertmanager service with default placement... 2024-01-24T02:52:29.319 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:29 smithi152 bash[16344]: audit 2024-01-24T02:52:28.021620+0000 mgr.smithi152.jkoscf (mgr.14116) 23 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:52:29.319 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:29 smithi152 bash[16344]: cephadm 2024-01-24T02:52:28.023816+0000 mgr.smithi152.jkoscf (mgr.14116) 24 : cephadm [INF] Saving service node-exporter spec with placement * 2024-01-24T02:52:29.319 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:29 smithi152 bash[16344]: audit 2024-01-24T02:52:28.028449+0000 mon.smithi152 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:29.319 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:29 smithi152 bash[16344]: cluster 2024-01-24T02:52:28.178301+0000 mgr.smithi152.jkoscf (mgr.14116) 25 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:52:29.903 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: Scheduled alertmanager update... 2024-01-24T02:52:31.203 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:30 smithi152 bash[16344]: audit 2024-01-24T02:52:29.897034+0000 mgr.smithi152.jkoscf (mgr.14116) 26 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:52:31.203 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:30 smithi152 bash[16344]: cephadm 2024-01-24T02:52:29.898432+0000 mgr.smithi152.jkoscf (mgr.14116) 27 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-01-24T02:52:31.204 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:30 smithi152 bash[16344]: audit 2024-01-24T02:52:29.901484+0000 mon.smithi152 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.152:0/3274070999' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:32.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:31 smithi152 bash[16344]: cluster 2024-01-24T02:52:30.178795+0000 mgr.smithi152.jkoscf (mgr.14116) 28 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:52:32.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:31 smithi152 bash[16344]: audit 2024-01-24T02:52:31.774303+0000 mon.smithi152 (mon.0) 65 : audit [INF] from='client.? 172.21.15.152:0/2348378186' entity='client.admin' 2024-01-24T02:52:33.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:32 smithi152 bash[16344]: cluster 2024-01-24T02:52:32.179236+0000 mgr.smithi152.jkoscf (mgr.14116) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:52:34.734 INFO:teuthology.orchestra.run.smithi152.stderr:Enabling the dashboard module... 2024-01-24T02:52:35.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:35 smithi152 bash[16344]: audit 2024-01-24T02:52:34.035143+0000 mon.smithi152 (mon.0) 66 : audit [INF] from='client.? 172.21.15.152:0/1609800443' entity='client.admin' 2024-01-24T02:52:35.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:35 smithi152 bash[16344]: cluster 2024-01-24T02:52:34.179621+0000 mgr.smithi152.jkoscf (mgr.14116) 30 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:52:37.530 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:37 smithi152 bash[16344]: cluster 2024-01-24T02:52:36.179986+0000 mgr.smithi152.jkoscf (mgr.14116) 31 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:52:37.531 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:37 smithi152 bash[16344]: audit 2024-01-24T02:52:36.317735+0000 mon.smithi152 (mon.0) 67 : audit [INF] from='client.? 172.21.15.152:0/1354231971' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-01-24T02:52:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:38 smithi152 bash[16344]: audit 2024-01-24T02:52:37.243589+0000 mon.smithi152 (mon.0) 68 : audit [INF] from='client.? 172.21.15.152:0/1354231971' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-01-24T02:52:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:38 smithi152 bash[16344]: cluster 2024-01-24T02:52:37.243682+0000 mon.smithi152 (mon.0) 69 : cluster [DBG] mgrmap e9: smithi152.jkoscf(active, since 33s) 2024-01-24T02:52:39.469 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: { 2024-01-24T02:52:39.469 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "epoch": 9, 2024-01-24T02:52:39.469 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "available": true, 2024-01-24T02:52:39.469 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "active_name": "smithi152.jkoscf", 2024-01-24T02:52:39.469 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "num_standby": 0 2024-01-24T02:52:39.469 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: } 2024-01-24T02:52:39.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:39 smithi152 bash[16344]: audit 2024-01-24T02:52:39.466797+0000 mon.smithi152 (mon.0) 70 : audit [DBG] from='client.? 172.21.15.152:0/720068084' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-01-24T02:52:40.013 INFO:teuthology.orchestra.run.smithi152.stderr:Waiting for the mgr to restart... 2024-01-24T02:52:40.013 INFO:teuthology.orchestra.run.smithi152.stderr:Waiting for mgr epoch 9... 2024-01-24T02:52:44.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: cluster 2024-01-24T02:52:43.660303+0000 mon.smithi152 (mon.0) 71 : cluster [INF] Active manager daemon smithi152.jkoscf restarted 2024-01-24T02:52:44.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: cluster 2024-01-24T02:52:43.660631+0000 mon.smithi152 (mon.0) 72 : cluster [INF] Activating manager daemon smithi152.jkoscf 2024-01-24T02:52:44.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: cluster 2024-01-24T02:52:43.667102+0000 mon.smithi152 (mon.0) 73 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-01-24T02:52:44.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: cluster 2024-01-24T02:52:43.667427+0000 mon.smithi152 (mon.0) 74 : cluster [DBG] mgrmap e10: smithi152.jkoscf(active, starting, since 0.00691418s) 2024-01-24T02:52:44.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: audit 2024-01-24T02:52:43.669850+0000 mon.smithi152 (mon.0) 75 : audit [DBG] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi152"}]: dispatch 2024-01-24T02:52:44.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: audit 2024-01-24T02:52:43.671687+0000 mon.smithi152 (mon.0) 76 : audit [DBG] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mgr metadata", "who": "smithi152.jkoscf", "id": "smithi152.jkoscf"}]: dispatch 2024-01-24T02:52:44.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: audit 2024-01-24T02:52:43.672765+0000 mon.smithi152 (mon.0) 77 : audit [DBG] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-24T02:52:44.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: audit 2024-01-24T02:52:43.672981+0000 mon.smithi152 (mon.0) 78 : audit [DBG] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-24T02:52:44.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: audit 2024-01-24T02:52:43.673191+0000 mon.smithi152 (mon.0) 79 : audit [DBG] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-24T02:52:44.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: cluster 2024-01-24T02:52:43.677120+0000 mon.smithi152 (mon.0) 80 : cluster [INF] Manager daemon smithi152.jkoscf is now available 2024-01-24T02:52:44.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: audit 2024-01-24T02:52:43.817926+0000 mon.smithi152 (mon.0) 81 : audit [DBG] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:52:44.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: audit 2024-01-24T02:52:43.820669+0000 mon.smithi152 (mon.0) 82 : audit [DBG] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:52:44.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: audit 2024-01-24T02:52:43.869191+0000 mon.smithi152 (mon.0) 83 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi152.jkoscf/mirror_snapshot_schedule"}]: dispatch 2024-01-24T02:52:44.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:44 smithi152 bash[16344]: audit 2024-01-24T02:52:43.875130+0000 mon.smithi152 (mon.0) 84 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi152.jkoscf/trash_purge_schedule"}]: dispatch 2024-01-24T02:52:44.688 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: { 2024-01-24T02:52:44.688 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "mgrmap_epoch": 11, 2024-01-24T02:52:44.688 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: "initialized": true 2024-01-24T02:52:44.688 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: } 2024-01-24T02:52:45.321 INFO:teuthology.orchestra.run.smithi152.stderr:mgr epoch 9 is available 2024-01-24T02:52:45.321 INFO:teuthology.orchestra.run.smithi152.stderr:Generating a dashboard self-signed certificate... 2024-01-24T02:52:45.981 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:45 smithi152 bash[16344]: audit 2024-01-24T02:52:44.670158+0000 mgr.smithi152.jkoscf (mgr.14156) 1 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-01-24T02:52:45.981 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:45 smithi152 bash[16344]: cluster 2024-01-24T02:52:44.671458+0000 mon.smithi152 (mon.0) 85 : cluster [DBG] mgrmap e11: smithi152.jkoscf(active, since 1.01094s) 2024-01-24T02:52:45.981 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:45 smithi152 bash[16344]: audit 2024-01-24T02:52:44.685930+0000 mgr.smithi152.jkoscf (mgr.14156) 2 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-01-24T02:52:46.812 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: Self-signed certificate created 2024-01-24T02:52:47.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:46 smithi152 bash[16344]: cluster 2024-01-24T02:52:45.670814+0000 mon.smithi152 (mon.0) 86 : cluster [DBG] mgrmap e12: smithi152.jkoscf(active, since 2s) 2024-01-24T02:52:47.360 INFO:teuthology.orchestra.run.smithi152.stderr:Creating initial admin user... 2024-01-24T02:52:48.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:47 smithi152 bash[16344]: audit 2024-01-24T02:52:46.665523+0000 mgr.smithi152.jkoscf (mgr.14156) 3 : audit [DBG] from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:52:48.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:47 smithi152 bash[16344]: audit 2024-01-24T02:52:46.806417+0000 mon.smithi152 (mon.0) 87 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:48.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:47 smithi152 bash[16344]: audit 2024-01-24T02:52:46.809772+0000 mon.smithi152 (mon.0) 88 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:49.048 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: {"username": "admin", "password": "$2b$12$otYKUOPFV7P1ue9ryZtUN..Vv6SisBfbH6ZaBUwWbx4s3ANKeCDpG", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1706064769, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-01-24T02:52:49.576 INFO:teuthology.orchestra.run.smithi152.stderr:Fetching dashboard port number... 2024-01-24T02:52:50.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:50 smithi152 bash[16344]: audit 2024-01-24T02:52:48.797627+0000 mgr.smithi152.jkoscf (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-24T02:52:50.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:50 smithi152 bash[16344]: audit 2024-01-24T02:52:49.040415+0000 mon.smithi152 (mon.0) 89 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:51.046 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: 8443 2024-01-24T02:52:51.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:51 smithi152 bash[16344]: cluster 2024-01-24T02:52:50.042034+0000 mon.smithi152 (mon.0) 90 : cluster [DBG] mgrmap e13: smithi152.jkoscf(active, since 6s) 2024-01-24T02:52:51.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:51 smithi152 bash[16344]: audit 2024-01-24T02:52:50.715612+0000 mon.smithi152 (mon.0) 91 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:52:51.591 INFO:teuthology.orchestra.run.smithi152.stderr:firewalld does not appear to be present 2024-01-24T02:52:51.591 INFO:teuthology.orchestra.run.smithi152.stderr:Not possible to open ports <[8443]>. firewalld.service is not available 2024-01-24T02:52:51.593 INFO:teuthology.orchestra.run.smithi152.stderr:Ceph Dashboard is now available at: 2024-01-24T02:52:51.593 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T02:52:51.593 INFO:teuthology.orchestra.run.smithi152.stderr: URL: https://smithi152.front.sepia.ceph.com:8443/ 2024-01-24T02:52:51.593 INFO:teuthology.orchestra.run.smithi152.stderr: User: admin 2024-01-24T02:52:51.593 INFO:teuthology.orchestra.run.smithi152.stderr: Password: ksyld9ubb3 2024-01-24T02:52:51.593 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T02:52:51.593 INFO:teuthology.orchestra.run.smithi152.stderr:Enabling autotune for osd_memory_target 2024-01-24T02:52:52.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:52 smithi152 bash[16344]: audit 2024-01-24T02:52:51.044036+0000 mon.smithi152 (mon.0) 92 : audit [DBG] from='client.? 172.21.15.152:0/269033779' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-01-24T02:52:55.036 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/ceph: set mgr/dashboard/cluster/status 2024-01-24T02:52:55.530 INFO:teuthology.orchestra.run.smithi152.stderr:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-01-24T02:52:55.530 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T02:52:55.531 INFO:teuthology.orchestra.run.smithi152.stderr: sudo /home/ubuntu/cephtest/cephadm shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-01-24T02:52:55.531 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T02:52:55.531 INFO:teuthology.orchestra.run.smithi152.stderr:Or, if you are only running a single cluster on this host: 2024-01-24T02:52:55.531 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T02:52:55.531 INFO:teuthology.orchestra.run.smithi152.stderr: sudo /home/ubuntu/cephtest/cephadm shell 2024-01-24T02:52:55.531 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T02:52:55.531 INFO:teuthology.orchestra.run.smithi152.stderr:Please consider enabling telemetry to help improve Ceph: 2024-01-24T02:52:55.531 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T02:52:55.531 INFO:teuthology.orchestra.run.smithi152.stderr: ceph telemetry on 2024-01-24T02:52:55.531 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T02:52:55.531 INFO:teuthology.orchestra.run.smithi152.stderr:For more information see: 2024-01-24T02:52:55.531 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T02:52:55.531 INFO:teuthology.orchestra.run.smithi152.stderr: https://docs.ceph.com/en/pacific/mgr/telemetry/ 2024-01-24T02:52:55.532 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T02:52:55.532 INFO:teuthology.orchestra.run.smithi152.stderr:Bootstrap complete. 2024-01-24T02:52:55.572 INFO:tasks.cephadm:Fetching config... 2024-01-24T02:52:55.572 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:52:55.572 DEBUG:teuthology.orchestra.run.smithi152:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-01-24T02:52:55.576 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-01-24T02:52:55.577 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:52:55.577 DEBUG:teuthology.orchestra.run.smithi152:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-01-24T02:52:55.624 INFO:tasks.cephadm:Fetching mon keyring... 2024-01-24T02:52:55.624 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:52:55.625 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd if=/var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/keyring of=/dev/stdout 2024-01-24T02:52:55.681 INFO:tasks.cephadm:Fetching pub ssh key... 2024-01-24T02:52:55.681 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:52:55.681 DEBUG:teuthology.orchestra.run.smithi152:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-01-24T02:52:55.728 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-01-24T02:52:55.729 DEBUG:teuthology.orchestra.run.smithi152:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC6dnCREblnldfaAqk5F2jzufqU/NfNby3zT/cA2sEqqqSxFNebnD0E2gloc/gDZP7Ylr08GWM0cx0K6/CUPxAtHDryJJHH6L7WojP6y+9sfvOeAMYUsQECq+9qsxisQy0y5M40oIiOEbvyOtkr8eac1qFAMVqNELPfThFtgpHv5bxcGCScJLGFTOpmHEvKcUXdvC3ZOGJQI2oosXbejCJy4cqTEHLRz6dpSck8bYg5PCsUeIF8lKaG2SnkWjS2NvtCV0plGvH/VlyN9HBvQ3eD0JSKMdEPygnplLf0fp8Q7azrfIvm3UJjjmXrtM8IVMxlltFM1OZqO08EhorgFMmw2Kw5KXUqqVWtps7Kl8ykCl73IL6uwaPMH0P/6A4DHntrXS+4pjWXY935fc77b4T+rEgFH3vdCt64nrXb/d+bxsp64/0C4f638TwSJdR7dAM7T+E5R8AUM+71LlQ1Y6LSaFqEUExJYKq3q9OcZLkeXoiO5Ukw2eNMv7T65SQDjz0= ceph-676f9788-ba63-11ee-95b1-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-01-24T02:52:55.792 INFO:teuthology.orchestra.run.smithi152.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC6dnCREblnldfaAqk5F2jzufqU/NfNby3zT/cA2sEqqqSxFNebnD0E2gloc/gDZP7Ylr08GWM0cx0K6/CUPxAtHDryJJHH6L7WojP6y+9sfvOeAMYUsQECq+9qsxisQy0y5M40oIiOEbvyOtkr8eac1qFAMVqNELPfThFtgpHv5bxcGCScJLGFTOpmHEvKcUXdvC3ZOGJQI2oosXbejCJy4cqTEHLRz6dpSck8bYg5PCsUeIF8lKaG2SnkWjS2NvtCV0plGvH/VlyN9HBvQ3eD0JSKMdEPygnplLf0fp8Q7azrfIvm3UJjjmXrtM8IVMxlltFM1OZqO08EhorgFMmw2Kw5KXUqqVWtps7Kl8ykCl73IL6uwaPMH0P/6A4DHntrXS+4pjWXY935fc77b4T+rEgFH3vdCt64nrXb/d+bxsp64/0C4f638TwSJdR7dAM7T+E5R8AUM+71LlQ1Y6LSaFqEUExJYKq3q9OcZLkeXoiO5Ukw2eNMv7T65SQDjz0= ceph-676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:52:55.802 DEBUG:teuthology.orchestra.run.smithi195:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC6dnCREblnldfaAqk5F2jzufqU/NfNby3zT/cA2sEqqqSxFNebnD0E2gloc/gDZP7Ylr08GWM0cx0K6/CUPxAtHDryJJHH6L7WojP6y+9sfvOeAMYUsQECq+9qsxisQy0y5M40oIiOEbvyOtkr8eac1qFAMVqNELPfThFtgpHv5bxcGCScJLGFTOpmHEvKcUXdvC3ZOGJQI2oosXbejCJy4cqTEHLRz6dpSck8bYg5PCsUeIF8lKaG2SnkWjS2NvtCV0plGvH/VlyN9HBvQ3eD0JSKMdEPygnplLf0fp8Q7azrfIvm3UJjjmXrtM8IVMxlltFM1OZqO08EhorgFMmw2Kw5KXUqqVWtps7Kl8ykCl73IL6uwaPMH0P/6A4DHntrXS+4pjWXY935fc77b4T+rEgFH3vdCt64nrXb/d+bxsp64/0C4f638TwSJdR7dAM7T+E5R8AUM+71LlQ1Y6LSaFqEUExJYKq3q9OcZLkeXoiO5Ukw2eNMv7T65SQDjz0= ceph-676f9788-ba63-11ee-95b1-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-01-24T02:52:55.828 INFO:teuthology.orchestra.run.smithi195.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC6dnCREblnldfaAqk5F2jzufqU/NfNby3zT/cA2sEqqqSxFNebnD0E2gloc/gDZP7Ylr08GWM0cx0K6/CUPxAtHDryJJHH6L7WojP6y+9sfvOeAMYUsQECq+9qsxisQy0y5M40oIiOEbvyOtkr8eac1qFAMVqNELPfThFtgpHv5bxcGCScJLGFTOpmHEvKcUXdvC3ZOGJQI2oosXbejCJy4cqTEHLRz6dpSck8bYg5PCsUeIF8lKaG2SnkWjS2NvtCV0plGvH/VlyN9HBvQ3eD0JSKMdEPygnplLf0fp8Q7azrfIvm3UJjjmXrtM8IVMxlltFM1OZqO08EhorgFMmw2Kw5KXUqqVWtps7Kl8ykCl73IL6uwaPMH0P/6A4DHntrXS+4pjWXY935fc77b4T+rEgFH3vdCt64nrXb/d+bxsp64/0C4f638TwSJdR7dAM7T+E5R8AUM+71LlQ1Y6LSaFqEUExJYKq3q9OcZLkeXoiO5Ukw2eNMv7T65SQDjz0= ceph-676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:52:55.835 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-01-24T02:52:56.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:52:56 smithi152 bash[16344]: audit 2024-01-24T02:52:55.028790+0000 mon.smithi152 (mon.0) 93 : audit [INF] from='client.? 172.21.15.152:0/3494985004' entity='client.admin' 2024-01-24T02:53:00.778 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-01-24T02:53:00.778 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-01-24T02:53:01.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:01 smithi152 bash[16344]: audit 2024-01-24T02:53:00.224092+0000 mon.smithi152 (mon.0) 94 : audit [INF] from='client.? 172.21.15.152:0/265871982' entity='client.admin' 2024-01-24T02:53:03.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:03 smithi152 bash[16344]: audit 2024-01-24T02:53:02.317689+0000 mon.smithi152 (mon.0) 95 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:03.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:03 smithi152 bash[16344]: audit 2024-01-24T02:53:02.611287+0000 mon.smithi152 (mon.0) 96 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd/host:smithi152", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:53:03.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:03 smithi152 bash[16344]: audit 2024-01-24T02:53:02.618026+0000 mon.smithi152 (mon.0) 97 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:03.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:03 smithi152 bash[16344]: cephadm 2024-01-24T02:53:02.634455+0000 mgr.smithi152.jkoscf (mgr.14156) 5 : cephadm [INF] Deploying daemon alertmanager.smithi152 on smithi152 2024-01-24T02:53:05.315 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi195 2024-01-24T02:53:05.316 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-01-24T02:53:05.316 DEBUG:teuthology.orchestra.run.smithi195:> dd of=/etc/ceph/ceph.conf 2024-01-24T02:53:05.322 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-01-24T02:53:05.322 DEBUG:teuthology.orchestra.run.smithi195:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-01-24T02:53:05.370 INFO:tasks.cephadm:Adding host smithi195 to orchestrator... 2024-01-24T02:53:05.370 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch host add smithi195 2024-01-24T02:53:05.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:05 smithi152 bash[16344]: cluster 2024-01-24T02:53:03.675103+0000 mgr.smithi152.jkoscf (mgr.14156) 6 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:05.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:05 smithi152 bash[16344]: audit 2024-01-24T02:53:04.264542+0000 mgr.smithi152.jkoscf (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-24T02:53:05.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:05 smithi152 bash[16344]: audit 2024-01-24T02:53:04.268603+0000 mon.smithi152 (mon.0) 98 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:07.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:07 smithi152 bash[16344]: cluster 2024-01-24T02:53:05.675599+0000 mgr.smithi152.jkoscf (mgr.14156) 8 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:09.568 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:09 smithi152 bash[16344]: cluster 2024-01-24T02:53:07.676077+0000 mgr.smithi152.jkoscf (mgr.14156) 9 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:11.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:11 smithi152 bash[16344]: cluster 2024-01-24T02:53:09.676514+0000 mgr.smithi152.jkoscf (mgr.14156) 10 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:11.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:11 smithi152 bash[16344]: audit 2024-01-24T02:53:10.553606+0000 mon.smithi152 (mon.0) 99 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:11.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:11 smithi152 bash[16344]: audit 2024-01-24T02:53:10.557347+0000 mon.smithi152 (mon.0) 100 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi152", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-24T02:53:11.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:11 smithi152 bash[16344]: audit 2024-01-24T02:53:10.560322+0000 mon.smithi152 (mon.0) 101 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi152", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-01-24T02:53:11.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:11 smithi152 bash[16344]: audit 2024-01-24T02:53:10.561244+0000 mon.smithi152 (mon.0) 102 : audit [DBG] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:53:12.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:12 smithi152 bash[16344]: cephadm 2024-01-24T02:53:10.562000+0000 mgr.smithi152.jkoscf (mgr.14156) 11 : cephadm [INF] Deploying daemon crash.smithi152 on smithi152 2024-01-24T02:53:13.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:13 smithi152 bash[16344]: cluster 2024-01-24T02:53:11.676995+0000 mgr.smithi152.jkoscf (mgr.14156) 12 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:13.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:13 smithi152 bash[16344]: audit 2024-01-24T02:53:13.023931+0000 mon.smithi152 (mon.0) 103 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:13.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:13 smithi152 bash[16344]: audit 2024-01-24T02:53:13.081654+0000 mon.smithi152 (mon.0) 104 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:13.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:13 smithi152 bash[16344]: audit 2024-01-24T02:53:13.084991+0000 mon.smithi152 (mon.0) 105 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:13.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:13 smithi152 bash[16344]: audit 2024-01-24T02:53:13.087997+0000 mon.smithi152 (mon.0) 106 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-01-24T02:53:13.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:13 smithi152 bash[16344]: audit 2024-01-24T02:53:13.092016+0000 mon.smithi152 (mon.0) 107 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:14.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:14 smithi152 bash[16344]: audit 2024-01-24T02:53:13.088509+0000 mgr.smithi152.jkoscf (mgr.14156) 13 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-01-24T02:53:14.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:14 smithi152 bash[16344]: cephadm 2024-01-24T02:53:13.097086+0000 mgr.smithi152.jkoscf (mgr.14156) 14 : cephadm [INF] Deploying daemon grafana.smithi152 on smithi152 2024-01-24T02:53:14.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:14 smithi152 bash[16344]: audit 2024-01-24T02:53:13.862624+0000 mon.smithi152 (mon.0) 108 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:15.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:15 smithi152 bash[16344]: cluster 2024-01-24T02:53:13.677415+0000 mgr.smithi152.jkoscf (mgr.14156) 15 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:17.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:17 smithi152 bash[16344]: cluster 2024-01-24T02:53:15.677854+0000 mgr.smithi152.jkoscf (mgr.14156) 16 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:19.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:19 smithi152 bash[16344]: cluster 2024-01-24T02:53:17.678279+0000 mgr.smithi152.jkoscf (mgr.14156) 17 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:21.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:21 smithi152 bash[16344]: cluster 2024-01-24T02:53:19.678641+0000 mgr.smithi152.jkoscf (mgr.14156) 18 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:23.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:23 smithi152 bash[16344]: cluster 2024-01-24T02:53:21.678996+0000 mgr.smithi152.jkoscf (mgr.14156) 19 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:24.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:24 smithi152 bash[16344]: cluster 2024-01-24T02:53:23.679388+0000 mgr.smithi152.jkoscf (mgr.14156) 20 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:27.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:26 smithi152 bash[16344]: cluster 2024-01-24T02:53:25.679966+0000 mgr.smithi152.jkoscf (mgr.14156) 21 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:29.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:29 smithi152 bash[16344]: cluster 2024-01-24T02:53:27.680466+0000 mgr.smithi152.jkoscf (mgr.14156) 22 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:31.300 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:31 smithi152 bash[16344]: cluster 2024-01-24T02:53:29.680896+0000 mgr.smithi152.jkoscf (mgr.14156) 23 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:31.300 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:31 smithi152 bash[16344]: audit 2024-01-24T02:53:31.040268+0000 mon.smithi152 (mon.0) 109 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:31.789 INFO:teuthology.orchestra.run.smithi195.stdout:Added host 'smithi195' with addr '172.21.15.195' 2024-01-24T02:53:32.349 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:32 smithi152 bash[16344]: audit 2024-01-24T02:53:30.972366+0000 mgr.smithi152.jkoscf (mgr.14156) 24 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi195", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:53:32.350 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:32 smithi152 bash[16344]: cephadm 2024-01-24T02:53:31.046803+0000 mgr.smithi152.jkoscf (mgr.14156) 25 : cephadm [INF] Deploying daemon node-exporter.smithi152 on smithi152 2024-01-24T02:53:32.350 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:32 smithi152 bash[16344]: audit 2024-01-24T02:53:31.551541+0000 mon.smithi152 (mon.0) 110 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:32.350 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:32 smithi152 bash[16344]: audit 2024-01-24T02:53:31.554637+0000 mon.smithi152 (mon.0) 111 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-01-24T02:53:32.350 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:32 smithi152 bash[16344]: audit 2024-01-24T02:53:31.786196+0000 mon.smithi152 (mon.0) 112 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:32.453 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch host ls --format=json 2024-01-24T02:53:33.227 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:33 smithi152 bash[16344]: cluster 2024-01-24T02:53:31.681540+0000 mgr.smithi152.jkoscf (mgr.14156) 26 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:53:33.227 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:33 smithi152 bash[16344]: cephadm 2024-01-24T02:53:31.786906+0000 mgr.smithi152.jkoscf (mgr.14156) 27 : cephadm [INF] Added host smithi195 2024-01-24T02:53:33.228 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:33 smithi152 bash[16344]: audit 2024-01-24T02:53:32.557835+0000 mon.smithi152 (mon.0) 113 : audit [INF] from='mgr.14156 172.21.15.152:0/3429062342' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-01-24T02:53:33.228 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:33 smithi152 bash[16344]: cluster 2024-01-24T02:53:32.558010+0000 mon.smithi152 (mon.0) 114 : cluster [DBG] mgrmap e14: smithi152.jkoscf(active, since 48s) 2024-01-24T02:53:39.113 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:39 smithi152 bash[16344]: cluster 2024-01-24T02:53:39.040169+0000 mon.smithi152 (mon.0) 115 : cluster [INF] Active manager daemon smithi152.jkoscf restarted 2024-01-24T02:53:39.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:39 smithi152 bash[16344]: cluster 2024-01-24T02:53:39.040953+0000 mon.smithi152 (mon.0) 116 : cluster [INF] Activating manager daemon smithi152.jkoscf 2024-01-24T02:53:39.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:39 smithi152 bash[16344]: cluster 2024-01-24T02:53:39.049704+0000 mon.smithi152 (mon.0) 117 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-01-24T02:53:39.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:39 smithi152 bash[16344]: cluster 2024-01-24T02:53:39.049947+0000 mon.smithi152 (mon.0) 118 : cluster [DBG] mgrmap e15: smithi152.jkoscf(active, starting, since 0.00931091s) 2024-01-24T02:53:39.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:39 smithi152 bash[16344]: audit 2024-01-24T02:53:39.052186+0000 mon.smithi152 (mon.0) 119 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi152"}]: dispatch 2024-01-24T02:53:39.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:39 smithi152 bash[16344]: audit 2024-01-24T02:53:39.053577+0000 mon.smithi152 (mon.0) 120 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mgr metadata", "who": "smithi152.jkoscf", "id": "smithi152.jkoscf"}]: dispatch 2024-01-24T02:53:39.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:39 smithi152 bash[16344]: audit 2024-01-24T02:53:39.054702+0000 mon.smithi152 (mon.0) 121 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-24T02:53:39.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:39 smithi152 bash[16344]: audit 2024-01-24T02:53:39.055018+0000 mon.smithi152 (mon.0) 122 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-24T02:53:39.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:39 smithi152 bash[16344]: audit 2024-01-24T02:53:39.055316+0000 mon.smithi152 (mon.0) 123 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-24T02:53:39.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:39 smithi152 bash[16344]: cluster 2024-01-24T02:53:39.060134+0000 mon.smithi152 (mon.0) 124 : cluster [INF] Manager daemon smithi152.jkoscf is now available 2024-01-24T02:53:40.054 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-01-24T02:53:40.054 INFO:teuthology.orchestra.run.smithi195.stdout:[{"addr": "172.21.15.152", "hostname": "smithi152", "labels": [], "status": ""}, {"addr": "172.21.15.195", "hostname": "smithi195", "labels": [], "status": ""}] 2024-01-24T02:53:40.168 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:40 smithi152 bash[16344]: audit 2024-01-24T02:53:39.201389+0000 mon.smithi152 (mon.0) 125 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:53:40.168 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:40 smithi152 bash[16344]: audit 2024-01-24T02:53:39.205723+0000 mon.smithi152 (mon.0) 126 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:53:40.168 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:40 smithi152 bash[16344]: audit 2024-01-24T02:53:39.227727+0000 mon.smithi152 (mon.0) 127 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:40.169 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:40 smithi152 bash[16344]: audit 2024-01-24T02:53:39.258350+0000 mon.smithi152 (mon.0) 128 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi152.jkoscf/mirror_snapshot_schedule"}]: dispatch 2024-01-24T02:53:40.169 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:40 smithi152 bash[16344]: audit 2024-01-24T02:53:39.265198+0000 mon.smithi152 (mon.0) 129 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi152.jkoscf/trash_purge_schedule"}]: dispatch 2024-01-24T02:53:40.169 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:40 smithi152 bash[16344]: audit 2024-01-24T02:53:39.856518+0000 mon.smithi152 (mon.0) 130 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:40.169 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:40 smithi152 bash[16344]: cluster 2024-01-24T02:53:40.048258+0000 mon.smithi152 (mon.0) 131 : cluster [DBG] mgrmap e16: smithi152.jkoscf(active, since 1.00763s) 2024-01-24T02:53:40.671 INFO:tasks.cephadm:Setting crush tunables to default 2024-01-24T02:53:40.672 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd crush tunables default 2024-01-24T02:53:41.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:41 smithi152 bash[16344]: audit 2024-01-24T02:53:40.050795+0000 mgr.smithi152.jkoscf (mgr.14182) 1 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T02:53:42.254 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:42 smithi152 bash[16344]: cluster 2024-01-24T02:53:41.091094+0000 mon.smithi152 (mon.0) 132 : cluster [DBG] mgrmap e17: smithi152.jkoscf(active, since 2s) 2024-01-24T02:53:42.254 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:42 smithi152 bash[16344]: audit 2024-01-24T02:53:41.656881+0000 mon.smithi152 (mon.0) 133 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:44.959 INFO:teuthology.orchestra.run.smithi152.stderr:adjusted tunables profile to default 2024-01-24T02:53:45.021 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:44 smithi152 bash[16344]: audit 2024-01-24T02:53:44.896656+0000 mon.smithi152 (mon.0) 134 : audit [INF] from='client.? 172.21.15.152:0/2436117206' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-01-24T02:53:45.813 INFO:tasks.cephadm:Adding mon.smithi152 on smithi152 2024-01-24T02:53:45.813 INFO:tasks.cephadm:Adding mon.smithi195 on smithi195 2024-01-24T02:53:45.814 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch apply mon '2;smithi152:172.21.15.152=smithi152;smithi195:172.21.15.195=smithi195' 2024-01-24T02:53:46.063 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:45 smithi152 bash[16344]: audit 2024-01-24T02:53:44.951709+0000 mon.smithi152 (mon.0) 135 : audit [INF] from='client.? 172.21.15.152:0/2436117206' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-01-24T02:53:46.063 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:45 smithi152 bash[16344]: cluster 2024-01-24T02:53:44.951817+0000 mon.smithi152 (mon.0) 136 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-01-24T02:53:46.063 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:45 smithi152 bash[16344]: audit 2024-01-24T02:53:45.229023+0000 mon.smithi152 (mon.0) 137 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:46.063 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:45 smithi152 bash[16344]: audit 2024-01-24T02:53:45.527058+0000 mon.smithi152 (mon.0) 138 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd/host:smithi152", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:53:48.472 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:48 smithi152 bash[16344]: audit 2024-01-24T02:53:47.422148+0000 mon.smithi152 (mon.0) 139 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:48.472 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:48 smithi152 bash[16344]: audit 2024-01-24T02:53:47.713816+0000 mon.smithi152 (mon.0) 140 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:48.472 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:48 smithi152 bash[16344]: audit 2024-01-24T02:53:47.715496+0000 mon.smithi152 (mon.0) 141 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd/host:smithi195", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:53:48.472 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:48 smithi152 bash[16344]: audit 2024-01-24T02:53:47.717443+0000 mon.smithi152 (mon.0) 142 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:53:48.472 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:48 smithi152 bash[16344]: audit 2024-01-24T02:53:47.719125+0000 mon.smithi152 (mon.0) 143 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T02:53:48.472 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:48 smithi152 bash[16344]: audit 2024-01-24T02:53:47.806384+0000 mon.smithi152 (mon.0) 144 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:48.473 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:48 smithi152 bash[16344]: audit 2024-01-24T02:53:47.859715+0000 mon.smithi152 (mon.0) 145 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:48.473 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:48 smithi152 bash[16344]: audit 2024-01-24T02:53:47.867490+0000 mon.smithi152 (mon.0) 146 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:48.473 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:48 smithi152 bash[16344]: audit 2024-01-24T02:53:47.870580+0000 mon.smithi152 (mon.0) 147 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-24T02:53:48.473 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:48 smithi152 bash[16344]: audit 2024-01-24T02:53:47.876738+0000 mon.smithi152 (mon.0) 148 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-01-24T02:53:48.473 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:48 smithi152 bash[16344]: audit 2024-01-24T02:53:47.878233+0000 mon.smithi152 (mon.0) 149 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:53:49.815 INFO:teuthology.orchestra.run.smithi195.stdout:Scheduled mon update... 2024-01-24T02:53:49.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:49 smithi152 bash[16344]: cephadm 2024-01-24T02:53:47.721979+0000 mgr.smithi152.jkoscf (mgr.14182) 2 : cephadm [INF] Updating smithi152:/etc/ceph/ceph.conf 2024-01-24T02:53:49.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:49 smithi152 bash[16344]: cephadm 2024-01-24T02:53:47.722614+0000 mgr.smithi152.jkoscf (mgr.14182) 3 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-01-24T02:53:49.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:49 smithi152 bash[16344]: cephadm 2024-01-24T02:53:47.757183+0000 mgr.smithi152.jkoscf (mgr.14182) 4 : cephadm [INF] Updating smithi152:/etc/ceph/ceph.client.admin.keyring 2024-01-24T02:53:49.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:49 smithi152 bash[16344]: cephadm 2024-01-24T02:53:47.802832+0000 mgr.smithi152.jkoscf (mgr.14182) 5 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.client.admin.keyring 2024-01-24T02:53:49.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:49 smithi152 bash[16344]: cephadm 2024-01-24T02:53:47.879536+0000 mgr.smithi152.jkoscf (mgr.14182) 6 : cephadm [INF] Deploying daemon crash.smithi195 on smithi195 2024-01-24T02:53:50.517 DEBUG:teuthology.orchestra.run.smithi195:mon.smithi195> sudo journalctl -f -n 0 -u ceph-676f9788-ba63-11ee-95b1-87774f69a715@mon.smithi195.service 2024-01-24T02:53:50.519 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-01-24T02:53:50.520 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph mon dump -f json 2024-01-24T02:53:50.665 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:-- Logs begin at Sun 2022-10-16 12:17:23 UTC. -- 2024-01-24T02:53:51.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:50 smithi152 bash[16344]: audit 2024-01-24T02:53:49.801793+0000 mgr.smithi152.jkoscf (mgr.14182) 7 : audit [DBG] from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi152:172.21.15.152=smithi152;smithi195:172.21.15.195=smithi195", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:53:51.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:50 smithi152 bash[16344]: cephadm 2024-01-24T02:53:49.807219+0000 mgr.smithi152.jkoscf (mgr.14182) 8 : cephadm [INF] Saving service mon spec with placement smithi152:172.21.15.152=smithi152;smithi195:172.21.15.195=smithi195;count:2 2024-01-24T02:53:51.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:50 smithi152 bash[16344]: audit 2024-01-24T02:53:49.812476+0000 mon.smithi152 (mon.0) 150 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:52.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:51 smithi152 bash[16344]: audit 2024-01-24T02:53:50.994388+0000 mon.smithi152 (mon.0) 151 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:52.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:51 smithi152 bash[16344]: audit 2024-01-24T02:53:50.999446+0000 mon.smithi152 (mon.0) 152 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi195.utuqsp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-24T02:53:52.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:51 smithi152 bash[16344]: audit 2024-01-24T02:53:51.004251+0000 mon.smithi152 (mon.0) 153 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi195.utuqsp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-01-24T02:53:52.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:51 smithi152 bash[16344]: audit 2024-01-24T02:53:51.005868+0000 mon.smithi152 (mon.0) 154 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-24T02:53:52.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:51 smithi152 bash[16344]: audit 2024-01-24T02:53:51.007729+0000 mon.smithi152 (mon.0) 155 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:53:52.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:51 smithi152 bash[16344]: cephadm 2024-01-24T02:53:51.009317+0000 mgr.smithi152.jkoscf (mgr.14182) 9 : cephadm [INF] Deploying daemon mgr.smithi195.utuqsp on smithi195 2024-01-24T02:53:55.176 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-01-24T02:53:55.176 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":1,"fsid":"676f9788-ba63-11ee-95b1-87774f69a715","modified":"2024-01-24T02:51:32.968465Z","created":"2024-01-24T02:51:32.968465Z","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":"smithi152","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:3300","nonce":0},{"type":"v1","addr":"172.21.15.152:6789","nonce":0}]},"addr":"172.21.15.152:6789/0","public_addr":"172.21.15.152:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-01-24T02:53:55.179 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 1 2024-01-24T02:53:55.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:55 smithi152 bash[16344]: audit 2024-01-24T02:53:54.126625+0000 mon.smithi152 (mon.0) 156 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:55.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:55 smithi152 bash[16344]: audit 2024-01-24T02:53:54.131391+0000 mon.smithi152 (mon.0) 157 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-24T02:53:55.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:55 smithi152 bash[16344]: audit 2024-01-24T02:53:54.133005+0000 mon.smithi152 (mon.0) 158 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-24T02:53:55.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:55 smithi152 bash[16344]: audit 2024-01-24T02:53:54.134697+0000 mon.smithi152 (mon.0) 159 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:53:55.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:55 smithi152 bash[16344]: cephadm 2024-01-24T02:53:54.136194+0000 mgr.smithi152.jkoscf (mgr.14182) 10 : cephadm [INF] Deploying daemon mon.smithi195 on smithi195 2024-01-24T02:53:55.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:55 smithi152 bash[16344]: audit 2024-01-24T02:53:54.233522+0000 mon.smithi152 (mon.0) 160 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:53:56.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:53:56 smithi152 bash[16344]: audit 2024-01-24T02:53:55.173563+0000 mon.smithi152 (mon.0) 161 : audit [DBG] from='client.? 172.21.15.195:0/264214974' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-24T02:53:57.128 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-01-24T02:53:57.128 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph mon dump -f json 2024-01-24T02:53:59.395 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:53:59 smithi195 systemd[1]: Started Ceph mon.smithi195 for 676f9788-ba63-11ee-95b1-87774f69a715. 2024-01-24T02:54:00.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:00 smithi152 bash[16344]: cluster 2024-01-24T02:53:59.056357+0000 mgr.smithi152.jkoscf (mgr.14182) 11 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:00.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:00 smithi152 bash[16344]: audit 2024-01-24T02:53:59.132853+0000 mon.smithi152 (mon.0) 162 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:00.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:00 smithi152 bash[16344]: cephadm 2024-01-24T02:53:59.136527+0000 mgr.smithi152.jkoscf (mgr.14182) 12 : cephadm [INF] Deploying daemon node-exporter.smithi195 on smithi195 2024-01-24T02:54:00.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:00 smithi152 bash[16344]: audit 2024-01-24T02:53:59.240314+0000 mon.smithi152 (mon.0) 163 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:00.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:00 smithi152 bash[16344]: audit 2024-01-24T02:53:59.683399+0000 mon.smithi152 (mon.0) 164 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:01.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.468+0000 7f9c8bc2e880 0 set uid:gid to 167:167 (ceph:ceph) 2024-01-24T02:54:01.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.468+0000 7f9c8bc2e880 0 ceph version 16.2.14-449-ga70aebef (a70aebef70df6ec2d957347ccbfc484e0573dd5f) pacific (stable), process ceph-mon, pid 8 2024-01-24T02:54:01.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.468+0000 7f9c8bc2e880 0 pidfile_write: ignore empty --pid-file 2024-01-24T02:54:01.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.472+0000 7f9c8bc2e880 0 load: jerasure load: lrc load: isa 2024-01-24T02:54:01.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: RocksDB version: 6.8.1 2024-01-24T02:54:01.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-01-24T02:54:01.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Compile date Jan 11 2024 2024-01-24T02:54:01.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: DB SUMMARY 2024-01-24T02:54:01.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: CURRENT file: CURRENT 2024-01-24T02:54:01.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: IDENTITY file: IDENTITY 2024-01-24T02:54:01.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: MANIFEST file: MANIFEST-000001 size: 13 Bytes 2024-01-24T02:54:01.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi195/store.db dir, Total Num: 0, files: 2024-01-24T02:54:01.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi195/store.db: 000003.log size: 511 ; 2024-01-24T02:54:01.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.error_if_exists: 0 2024-01-24T02:54:01.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.create_if_missing: 0 2024-01-24T02:54:01.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.paranoid_checks: 1 2024-01-24T02:54:01.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.env: 0x5604ed69e080 2024-01-24T02:54:01.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.fs: Posix File System 2024-01-24T02:54:01.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.info_log: 0x5604ee950400 2024-01-24T02:54:01.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_file_opening_threads: 16 2024-01-24T02:54:01.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.statistics: (nil) 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.use_fsync: 0 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_log_file_size: 0 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.keep_log_file_num: 1000 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.recycle_log_file_num: 0 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.allow_fallocate: 1 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.allow_mmap_reads: 0 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.allow_mmap_writes: 0 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.use_direct_reads: 0 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.create_missing_column_families: 0 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.db_log_dir: 2024-01-24T02:54:01.497 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi195/store.db 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_subcompactions: 1 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_background_flushes: -1 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.advise_random_on_open: 1 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.db_write_buffer_size: 0 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.write_buffer_manager: 0x5604ef644420 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-01-24T02:54:01.498 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-01-24T02:54:01.499 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-01-24T02:54:01.499 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.rate_limiter: (nil) 2024-01-24T02:54:01.499 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-01-24T02:54:01.499 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.wal_recovery_mode: 2 2024-01-24T02:54:01.499 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.enable_thread_tracking: 0 2024-01-24T02:54:01.499 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.enable_pipelined_write: 0 2024-01-24T02:54:01.499 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.unordered_write: 0 2024-01-24T02:54:01.499 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-01-24T02:54:01.499 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-01-24T02:54:01.499 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-01-24T02:54:01.499 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-01-24T02:54:01.499 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.row_cache: None 2024-01-24T02:54:01.499 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.wal_filter: None 2024-01-24T02:54:01.500 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-01-24T02:54:01.500 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.allow_ingest_behind: 0 2024-01-24T02:54:01.500 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.preserve_deletes: 0 2024-01-24T02:54:01.500 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.two_write_queues: 0 2024-01-24T02:54:01.500 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.manual_wal_flush: 0 2024-01-24T02:54:01.500 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.atomic_flush: 0 2024-01-24T02:54:01.500 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-01-24T02:54:01.500 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-01-24T02:54:01.500 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-01-24T02:54:01.500 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.log_readahead_size: 0 2024-01-24T02:54:01.500 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-01-24T02:54:01.500 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_background_jobs: 2 2024-01-24T02:54:01.501 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_background_compactions: -1 2024-01-24T02:54:01.501 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-01-24T02:54:01.501 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-01-24T02:54:01.501 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-01-24T02:54:01.501 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_total_wal_size: 0 2024-01-24T02:54:01.501 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-01-24T02:54:01.501 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_open_files: -1 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.bytes_per_sync: 0 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compaction_readahead_size: 0 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Compression algorithms supported: 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: kZSTD supported: 0 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: kXpressCompression supported: 0 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: kLZ4HCCompression supported: 1 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: kLZ4Compression supported: 1 2024-01-24T02:54:01.502 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: kBZip2Compression supported: 0 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: kZlibCompression supported: 1 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: kSnappyCompression supported: 1 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi195/store.db/MANIFEST-000001 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.merge_operator: 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compaction_filter: None 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compaction_filter_factory: None 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5604ee8f3d28) 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: cache_index_and_filter_blocks: 1 2024-01-24T02:54:01.503 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: cache_index_and_filter_blocks_with_high_priority: 0 2024-01-24T02:54:01.504 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-01-24T02:54:01.504 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: pin_top_level_index_and_filter: 1 2024-01-24T02:54:01.504 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: index_type: 0 2024-01-24T02:54:01.504 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: data_block_index_type: 0 2024-01-24T02:54:01.504 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: index_shortening: 1 2024-01-24T02:54:01.504 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: data_block_hash_table_util_ratio: 0.750000 2024-01-24T02:54:01.504 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: hash_index_allow_collision: 1 2024-01-24T02:54:01.504 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: checksum: 1 2024-01-24T02:54:01.504 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: no_block_cache: 0 2024-01-24T02:54:01.504 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: block_cache: 0x5604ee92af10 2024-01-24T02:54:01.504 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: block_cache_name: BinnedLRUCache 2024-01-24T02:54:01.504 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: block_cache_options: 2024-01-24T02:54:01.504 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: capacity : 536870912 2024-01-24T02:54:01.505 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: num_shard_bits : 4 2024-01-24T02:54:01.505 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: strict_capacity_limit : 0 2024-01-24T02:54:01.505 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: high_pri_pool_ratio: 0.000 2024-01-24T02:54:01.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:01 smithi152 bash[16344]: cephadm 2024-01-24T02:53:59.707216+0000 mgr.smithi152.jkoscf (mgr.14182) 13 : cephadm [INF] Deploying daemon prometheus.smithi195 on smithi195 2024-01-24T02:54:01.797 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: block_cache_compressed: (nil) 2024-01-24T02:54:01.797 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: persistent_cache: (nil) 2024-01-24T02:54:01.797 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: block_size: 4096 2024-01-24T02:54:01.797 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: block_size_deviation: 10 2024-01-24T02:54:01.797 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: block_restart_interval: 16 2024-01-24T02:54:01.797 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: index_block_restart_interval: 1 2024-01-24T02:54:01.797 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: metadata_block_size: 4096 2024-01-24T02:54:01.797 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: partition_filters: 0 2024-01-24T02:54:01.798 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: use_delta_encoding: 1 2024-01-24T02:54:01.798 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: filter_policy: rocksdb.BuiltinBloomFilter 2024-01-24T02:54:01.798 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: whole_key_filtering: 1 2024-01-24T02:54:01.798 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: verify_compression: 0 2024-01-24T02:54:01.798 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: read_amp_bytes_per_bit: 0 2024-01-24T02:54:01.798 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: format_version: 2 2024-01-24T02:54:01.798 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: enable_index_compression: 1 2024-01-24T02:54:01.798 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: block_align: 0 2024-01-24T02:54:01.798 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.write_buffer_size: 33554432 2024-01-24T02:54:01.798 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_write_buffer_number: 2 2024-01-24T02:54:01.798 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compression: NoCompression 2024-01-24T02:54:01.798 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.bottommost_compression: Disabled 2024-01-24T02:54:01.798 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.prefix_extractor: nullptr 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.num_levels: 7 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compression_opts.level: 32767 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compression_opts.strategy: 0 2024-01-24T02:54:01.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-01-24T02:54:01.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-01-24T02:54:01.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compression_opts.enabled: false 2024-01-24T02:54:01.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-01-24T02:54:01.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-01-24T02:54:01.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-01-24T02:54:01.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.target_file_size_base: 67108864 2024-01-24T02:54:01.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-01-24T02:54:01.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-01-24T02:54:01.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-01-24T02:54:01.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-01-24T02:54:01.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-01-24T02:54:01.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.arena_block_size: 4194304 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.disable_auto_compactions: 0 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-01-24T02:54:01.801 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-01-24T02:54:01.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-01-24T02:54:01.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-01-24T02:54:01.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-01-24T02:54:01.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-01-24T02:54:01.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-01-24T02:54:01.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-01-24T02:54:01.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-01-24T02:54:01.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.table_properties_collectors: 2024-01-24T02:54:01.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.inplace_update_support: 0 2024-01-24T02:54:01.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-01-24T02:54:01.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-01-24T02:54:01.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-01-24T02:54:01.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-01-24T02:54:01.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.bloom_locality: 0 2024-01-24T02:54:01.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.max_successive_merges: 0 2024-01-24T02:54:01.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-01-24T02:54:01.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.paranoid_file_checks: 0 2024-01-24T02:54:01.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.force_consistency_checks: 0 2024-01-24T02:54:01.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.report_bg_io_stats: 0 2024-01-24T02:54:01.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.ttl: 2592000 2024-01-24T02:54:01.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-01-24T02:54:01.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi195/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-24T02:54:01.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-01-24T02:54:01.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706064841478710, "job": 1, "event": "recovery_started", "log_files": [3]} 2024-01-24T02:54:01.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #3 mode 2 2024-01-24T02:54:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 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-24T02:54:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706064841479476, "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": 1706064841, "oldest_key_time": 3, "file_creation_time": 0}} 2024-01-24T02:54:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: [version_set.cc:3826] Creating manifest 5 2024-01-24T02:54:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706064841480254, "job": 1, "event": "recovery_finished"} 2024-01-24T02:54:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 4 rocksdb: DB pointer 0x5604ee9f3800 2024-01-24T02:54:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 0 mon.smithi195 does not exist in monmap, will attempt to join an existing cluster 2024-01-24T02:54:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.476+0000 7f9c8bc2e880 0 using public_addr v2:172.21.15.195:0/0 -> [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] 2024-01-24T02:54:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.480+0000 7f9c72a23700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-01-24T02:54:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.480+0000 7f9c72a23700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-01-24T02:54:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: ** DB Stats ** 2024-01-24T02:54:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-24T02:54:01.804 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: 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-24T02:54:01.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-01-24T02:54:01.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-24T02:54:01.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: 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-24T02:54:01.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-01-24T02:54:01.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-24T02:54:01.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: ** Compaction Stats [default] ** 2024-01-24T02:54:01.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: 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-24T02:54:01.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-24T02:54:01.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.7 0.00 0.00 1 0.001 0 0 2024-01-24T02:54:01.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.7 0.00 0.00 1 0.001 0 0 2024-01-24T02:54:01.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.7 0.00 0.00 1 0.001 0 0 2024-01-24T02:54:01.805 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: ** Compaction Stats [default] ** 2024-01-24T02:54:01.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: 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-24T02:54:01.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-24T02:54:01.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7 0.00 0.00 1 0.001 0 0 2024-01-24T02:54:01.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-24T02:54:01.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-24T02:54:01.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-24T02:54:01.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: AddFile(Total Files): cumulative 0, interval 0 2024-01-24T02:54:01.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-24T02:54:01.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: AddFile(Keys): cumulative 0, interval 0 2024-01-24T02:54:01.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Cumulative compaction: 0.00 GB write, 0.39 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-24T02:54:01.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Interval compaction: 0.00 GB write, 0.39 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-24T02:54:01.806 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: 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-24T02:54:01.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: ** File Read Latency Histogram By Level [default] ** 2024-01-24T02:54:01.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: ** Compaction Stats [default] ** 2024-01-24T02:54:01.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: 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-24T02:54:01.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-24T02:54:01.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.7 0.00 0.00 1 0.001 0 0 2024-01-24T02:54:01.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.7 0.00 0.00 1 0.001 0 0 2024-01-24T02:54:01.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: 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-24T02:54:01.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: ** Compaction Stats [default] ** 2024-01-24T02:54:01.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: 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-24T02:54:01.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-24T02:54:01.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7 0.00 0.00 1 0.001 0 0 2024-01-24T02:54:01.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-24T02:54:01.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-24T02:54:01.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-24T02:54:01.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: AddFile(Total Files): cumulative 0, interval 0 2024-01-24T02:54:01.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-24T02:54:01.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: AddFile(Keys): cumulative 0, interval 0 2024-01-24T02:54:01.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: Cumulative compaction: 0.00 GB write, 0.39 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-24T02:54:01.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: 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-24T02:54:01.808 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: 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-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: ** File Read Latency Histogram By Level [default] ** 2024-01-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.480+0000 7f9c8bc2e880 0 starting mon.smithi195 rank -1 at public addrs [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] at bind addrs [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi195 fsid 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.480+0000 7f9c8bc2e880 1 mon.smithi195@-1(???) e0 preinit fsid 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.516+0000 7f9c75228700 0 mon.smithi195@-1(synchronizing).mds e1 new map 2024-01-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.516+0000 7f9c75228700 0 mon.smithi195@-1(synchronizing).mds e1 print_map 2024-01-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: e1 2024-01-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: enable_multiple, ever_enabled_multiple: 1,1 2024-01-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: 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-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: legacy client fscid: -1 2024-01-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: 2024-01-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: No filesystems configured 2024-01-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.516+0000 7f9c75228700 1 mon.smithi195@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-01-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.516+0000 7f9c75228700 1 mon.smithi195@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-01-24T02:54:01.809 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.516+0000 7f9c75228700 1 mon.smithi195@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-01-24T02:54:01.810 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.516+0000 7f9c75228700 1 mon.smithi195@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-01-24T02:54:01.810 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.516+0000 7f9c75228700 1 mon.smithi195@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-01-24T02:54:01.810 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.516+0000 7f9c75228700 1 mon.smithi195@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-01-24T02:54:01.810 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.516+0000 7f9c75228700 1 mon.smithi195@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-01-24T02:54:01.810 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.516+0000 7f9c75228700 0 mon.smithi195@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-01-24T02:54:01.810 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.516+0000 7f9c75228700 0 mon.smithi195@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-01-24T02:54:01.810 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.516+0000 7f9c75228700 0 mon.smithi195@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-01-24T02:54:01.810 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: cephadm 2024-01-24T02:53:59.707216+0000 mgr.smithi152.jkoscf (mgr.14182) 13 : cephadm [INF] Deploying daemon prometheus.smithi195 on smithi195 2024-01-24T02:54:01.810 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:01 smithi195 bash[19846]: debug 2024-01-24T02:54:01.516+0000 7f9c75228700 1 mon.smithi195@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-01-24T02:54:06.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: cluster 2024-01-24T02:54:01.056817+0000 mgr.smithi152.jkoscf (mgr.14182) 14 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: audit 2024-01-24T02:54:01.528605+0000 mon.smithi152 (mon.0) 166 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi152"}]: dispatch 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: cluster 2024-01-24T02:54:01.529098+0000 mon.smithi152 (mon.0) 167 : cluster [INF] mon.smithi152 calling monitor election 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: audit 2024-01-24T02:54:01.531881+0000 mon.smithi152 (mon.0) 168 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: audit 2024-01-24T02:54:02.522629+0000 mon.smithi152 (mon.0) 169 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: audit 2024-01-24T02:54:02.578801+0000 mon.smithi152 (mon.0) 170 : audit [DBG] from='mgr.? 172.21.15.195:0/2125867993' entity='mgr.smithi195.utuqsp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi195.utuqsp/crt"}]: dispatch 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: cluster 2024-01-24T02:54:03.057273+0000 mgr.smithi152.jkoscf (mgr.14182) 15 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: audit 2024-01-24T02:54:03.523243+0000 mon.smithi152 (mon.0) 171 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: cluster 2024-01-24T02:54:03.527393+0000 mon.smithi195 (mon.1) 1 : cluster [INF] mon.smithi195 calling monitor election 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: audit 2024-01-24T02:54:04.523279+0000 mon.smithi152 (mon.0) 172 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: cluster 2024-01-24T02:54:05.057696+0000 mgr.smithi152.jkoscf (mgr.14182) 16 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: audit 2024-01-24T02:54:05.523104+0000 mon.smithi152 (mon.0) 173 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: audit 2024-01-24T02:54:06.523184+0000 mon.smithi152 (mon.0) 174 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: cluster 2024-01-24T02:54:06.551986+0000 mon.smithi152 (mon.0) 175 : cluster [INF] mon.smithi152 is new leader, mons smithi152,smithi195 in quorum (ranks 0,1) 2024-01-24T02:54:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: cluster 2024-01-24T02:54:06.557972+0000 mon.smithi152 (mon.0) 176 : cluster [DBG] monmap e2: 2 mons at {smithi152=[v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0],smithi195=[v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0]} removed_ranks: {} 2024-01-24T02:54:06.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: cluster 2024-01-24T02:54:06.559054+0000 mon.smithi152 (mon.0) 177 : cluster [DBG] fsmap 2024-01-24T02:54:06.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: cluster 2024-01-24T02:54:06.559123+0000 mon.smithi152 (mon.0) 178 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-01-24T02:54:06.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: cluster 2024-01-24T02:54:06.559488+0000 mon.smithi152 (mon.0) 179 : cluster [DBG] mgrmap e17: smithi152.jkoscf(active, since 27s) 2024-01-24T02:54:06.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: cluster 2024-01-24T02:54:06.560835+0000 mon.smithi152 (mon.0) 180 : cluster [DBG] Standby manager daemon smithi195.utuqsp started 2024-01-24T02:54:06.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: audit 2024-01-24T02:54:06.563837+0000 mon.smithi152 (mon.0) 181 : audit [DBG] from='mgr.? 172.21.15.195:0/2125867993' entity='mgr.smithi195.utuqsp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-01-24T02:54:06.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: cluster 2024-01-24T02:54:06.567422+0000 mon.smithi152 (mon.0) 182 : cluster [INF] overall HEALTH_OK 2024-01-24T02:54:06.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: audit 2024-01-24T02:54:06.568318+0000 mon.smithi152 (mon.0) 183 : audit [DBG] from='mgr.? 172.21.15.195:0/2125867993' entity='mgr.smithi195.utuqsp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi195.utuqsp/key"}]: dispatch 2024-01-24T02:54:06.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: audit 2024-01-24T02:54:06.571822+0000 mon.smithi152 (mon.0) 184 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:06.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:06 smithi195 bash[19846]: audit 2024-01-24T02:54:06.572090+0000 mon.smithi152 (mon.0) 185 : audit [DBG] from='mgr.? 172.21.15.195:0/2125867993' entity='mgr.smithi195.utuqsp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-01-24T02:54:07.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: cluster 2024-01-24T02:54:01.056817+0000 mgr.smithi152.jkoscf (mgr.14182) 14 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:07.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: audit 2024-01-24T02:54:01.528605+0000 mon.smithi152 (mon.0) 166 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi152"}]: dispatch 2024-01-24T02:54:07.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: cluster 2024-01-24T02:54:01.529098+0000 mon.smithi152 (mon.0) 167 : cluster [INF] mon.smithi152 calling monitor election 2024-01-24T02:54:07.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: audit 2024-01-24T02:54:01.531881+0000 mon.smithi152 (mon.0) 168 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:07.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: audit 2024-01-24T02:54:02.522629+0000 mon.smithi152 (mon.0) 169 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:07.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: audit 2024-01-24T02:54:02.578801+0000 mon.smithi152 (mon.0) 170 : audit [DBG] from='mgr.? 172.21.15.195:0/2125867993' entity='mgr.smithi195.utuqsp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi195.utuqsp/crt"}]: dispatch 2024-01-24T02:54:07.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: cluster 2024-01-24T02:54:03.057273+0000 mgr.smithi152.jkoscf (mgr.14182) 15 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:07.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: audit 2024-01-24T02:54:03.523243+0000 mon.smithi152 (mon.0) 171 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:07.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: cluster 2024-01-24T02:54:03.527393+0000 mon.smithi195 (mon.1) 1 : cluster [INF] mon.smithi195 calling monitor election 2024-01-24T02:54:07.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: audit 2024-01-24T02:54:04.523279+0000 mon.smithi152 (mon.0) 172 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: cluster 2024-01-24T02:54:05.057696+0000 mgr.smithi152.jkoscf (mgr.14182) 16 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: audit 2024-01-24T02:54:05.523104+0000 mon.smithi152 (mon.0) 173 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: audit 2024-01-24T02:54:06.523184+0000 mon.smithi152 (mon.0) 174 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: cluster 2024-01-24T02:54:06.551986+0000 mon.smithi152 (mon.0) 175 : cluster [INF] mon.smithi152 is new leader, mons smithi152,smithi195 in quorum (ranks 0,1) 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: cluster 2024-01-24T02:54:06.557972+0000 mon.smithi152 (mon.0) 176 : cluster [DBG] monmap e2: 2 mons at {smithi152=[v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0],smithi195=[v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0]} removed_ranks: {} 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: cluster 2024-01-24T02:54:06.559054+0000 mon.smithi152 (mon.0) 177 : cluster [DBG] fsmap 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: cluster 2024-01-24T02:54:06.559123+0000 mon.smithi152 (mon.0) 178 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: cluster 2024-01-24T02:54:06.559488+0000 mon.smithi152 (mon.0) 179 : cluster [DBG] mgrmap e17: smithi152.jkoscf(active, since 27s) 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: cluster 2024-01-24T02:54:06.560835+0000 mon.smithi152 (mon.0) 180 : cluster [DBG] Standby manager daemon smithi195.utuqsp started 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: audit 2024-01-24T02:54:06.563837+0000 mon.smithi152 (mon.0) 181 : audit [DBG] from='mgr.? 172.21.15.195:0/2125867993' entity='mgr.smithi195.utuqsp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: cluster 2024-01-24T02:54:06.567422+0000 mon.smithi152 (mon.0) 182 : cluster [INF] overall HEALTH_OK 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: audit 2024-01-24T02:54:06.568318+0000 mon.smithi152 (mon.0) 183 : audit [DBG] from='mgr.? 172.21.15.195:0/2125867993' entity='mgr.smithi195.utuqsp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi195.utuqsp/key"}]: dispatch 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: audit 2024-01-24T02:54:06.571822+0000 mon.smithi152 (mon.0) 184 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:07.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:06 smithi152 bash[16344]: audit 2024-01-24T02:54:06.572090+0000 mon.smithi152 (mon.0) 185 : audit [DBG] from='mgr.? 172.21.15.195:0/2125867993' entity='mgr.smithi195.utuqsp' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-01-24T02:54:07.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:07 smithi195 bash[19846]: cluster 2024-01-24T02:54:06.627548+0000 mon.smithi152 (mon.0) 186 : cluster [DBG] mgrmap e18: smithi152.jkoscf(active, since 27s), standbys: smithi195.utuqsp 2024-01-24T02:54:07.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:07 smithi195 bash[19846]: audit 2024-01-24T02:54:06.627814+0000 mon.smithi152 (mon.0) 187 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mgr metadata", "who": "smithi195.utuqsp", "id": "smithi195.utuqsp"}]: dispatch 2024-01-24T02:54:07.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:07 smithi195 bash[19846]: cluster 2024-01-24T02:54:07.058128+0000 mgr.smithi152.jkoscf (mgr.14182) 17 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:07.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:07 smithi195 bash[19846]: audit 2024-01-24T02:54:07.523701+0000 mon.smithi152 (mon.0) 188 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:08.073 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-01-24T02:54:08.073 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":2,"fsid":"676f9788-ba63-11ee-95b1-87774f69a715","modified":"2024-01-24T02:54:01.523138Z","created":"2024-01-24T02:51:32.968465Z","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":"smithi152","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:3300","nonce":0},{"type":"v1","addr":"172.21.15.152:6789","nonce":0}]},"addr":"172.21.15.152:6789/0","public_addr":"172.21.15.152:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi195","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:3300","nonce":0},{"type":"v1","addr":"172.21.15.195:6789","nonce":0}]},"addr":"172.21.15.195:6789/0","public_addr":"172.21.15.195:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-01-24T02:54:08.076 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 2 2024-01-24T02:54:08.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:07 smithi152 bash[16344]: cluster 2024-01-24T02:54:06.627548+0000 mon.smithi152 (mon.0) 186 : cluster [DBG] mgrmap e18: smithi152.jkoscf(active, since 27s), standbys: smithi195.utuqsp 2024-01-24T02:54:08.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:07 smithi152 bash[16344]: audit 2024-01-24T02:54:06.627814+0000 mon.smithi152 (mon.0) 187 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mgr metadata", "who": "smithi195.utuqsp", "id": "smithi195.utuqsp"}]: dispatch 2024-01-24T02:54:08.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:07 smithi152 bash[16344]: cluster 2024-01-24T02:54:07.058128+0000 mgr.smithi152.jkoscf (mgr.14182) 17 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:08.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:07 smithi152 bash[16344]: audit 2024-01-24T02:54:07.523701+0000 mon.smithi152 (mon.0) 188 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mon metadata", "id": "smithi195"}]: dispatch 2024-01-24T02:54:08.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:08 smithi152 bash[16344]: audit 2024-01-24T02:54:08.070771+0000 mon.smithi152 (mon.0) 189 : audit [DBG] from='client.? 172.21.15.195:0/3368665999' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-24T02:54:08.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:08 smithi195 bash[19846]: audit 2024-01-24T02:54:08.070771+0000 mon.smithi152 (mon.0) 189 : audit [DBG] from='client.? 172.21.15.195:0/3368665999' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-24T02:54:09.610 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-01-24T02:54:09.611 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph config generate-minimal-conf 2024-01-24T02:54:09.948 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:09 smithi195 bash[19846]: cluster 2024-01-24T02:54:09.058579+0000 mgr.smithi152.jkoscf (mgr.14182) 18 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:10.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:09 smithi152 bash[16344]: cluster 2024-01-24T02:54:09.058579+0000 mgr.smithi152.jkoscf (mgr.14182) 18 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:12.585 INFO:teuthology.orchestra.run.smithi152.stdout:# minimal ceph.conf for 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:54:12.585 INFO:teuthology.orchestra.run.smithi152.stdout:[global] 2024-01-24T02:54:12.585 INFO:teuthology.orchestra.run.smithi152.stdout: fsid = 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T02:54:12.585 INFO:teuthology.orchestra.run.smithi152.stdout: mon_host = [v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0] [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] 2024-01-24T02:54:12.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:12 smithi195 bash[19846]: cluster 2024-01-24T02:54:11.059128+0000 mgr.smithi152.jkoscf (mgr.14182) 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:12.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:12 smithi152 bash[16344]: cluster 2024-01-24T02:54:11.059128+0000 mgr.smithi152.jkoscf (mgr.14182) 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:13.141 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-01-24T02:54:13.141 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:54:13.141 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/etc/ceph/ceph.conf 2024-01-24T02:54:13.151 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:54:13.151 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-01-24T02:54:13.203 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-01-24T02:54:13.204 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/ceph/ceph.conf 2024-01-24T02:54:13.221 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-01-24T02:54:13.221 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-01-24T02:54:13.279 INFO:tasks.cephadm:Deploying OSDs... 2024-01-24T02:54:13.279 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:54:13.279 DEBUG:teuthology.orchestra.run.smithi152:> dd if=/scratch_devs of=/dev/stdout 2024-01-24T02:54:13.286 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-24T02:54:13.286 DEBUG:teuthology.orchestra.run.smithi152:> stat /dev/nvme1n1 2024-01-24T02:54:13.334 INFO:teuthology.orchestra.run.smithi152.stdout: File: /dev/nvme1n1 2024-01-24T02:54:13.334 INFO:teuthology.orchestra.run.smithi152.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-24T02:54:13.334 INFO:teuthology.orchestra.run.smithi152.stdout:Device: 6h/6d Inode: 370 Links: 1 Device type: 103,2 2024-01-24T02:54:13.334 INFO:teuthology.orchestra.run.smithi152.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-24T02:54:13.334 INFO:teuthology.orchestra.run.smithi152.stdout:Access: 2024-01-24 02:52:57.638471278 +0000 2024-01-24T02:54:13.335 INFO:teuthology.orchestra.run.smithi152.stdout:Modify: 2024-01-24 02:50:57.576148227 +0000 2024-01-24T02:54:13.335 INFO:teuthology.orchestra.run.smithi152.stdout:Change: 2024-01-24 02:50:57.576148227 +0000 2024-01-24T02:54:13.335 INFO:teuthology.orchestra.run.smithi152.stdout: Birth: - 2024-01-24T02:54:13.335 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-01-24T02:54:13.389 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records in 2024-01-24T02:54:13.389 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records out 2024-01-24T02:54:13.389 INFO:teuthology.orchestra.run.smithi152.stderr:512 bytes copied, 0.000477301 s, 1.1 MB/s 2024-01-24T02:54:13.390 DEBUG:teuthology.orchestra.run.smithi152:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-01-24T02:54:13.440 DEBUG:teuthology.orchestra.run.smithi152:> stat /dev/nvme2n1 2024-01-24T02:54:13.490 INFO:teuthology.orchestra.run.smithi152.stdout: File: /dev/nvme2n1 2024-01-24T02:54:13.491 INFO:teuthology.orchestra.run.smithi152.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-24T02:54:13.491 INFO:teuthology.orchestra.run.smithi152.stdout:Device: 6h/6d Inode: 479 Links: 1 Device type: 103,4 2024-01-24T02:54:13.491 INFO:teuthology.orchestra.run.smithi152.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-24T02:54:13.491 INFO:teuthology.orchestra.run.smithi152.stdout:Access: 2024-01-24 02:52:57.654470897 +0000 2024-01-24T02:54:13.491 INFO:teuthology.orchestra.run.smithi152.stdout:Modify: 2024-01-24 02:50:57.680197735 +0000 2024-01-24T02:54:13.491 INFO:teuthology.orchestra.run.smithi152.stdout:Change: 2024-01-24 02:50:57.680197735 +0000 2024-01-24T02:54:13.491 INFO:teuthology.orchestra.run.smithi152.stdout: Birth: - 2024-01-24T02:54:13.491 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-01-24T02:54:13.546 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records in 2024-01-24T02:54:13.546 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records out 2024-01-24T02:54:13.546 INFO:teuthology.orchestra.run.smithi152.stderr:512 bytes copied, 0.00045487 s, 1.1 MB/s 2024-01-24T02:54:13.547 DEBUG:teuthology.orchestra.run.smithi152:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-01-24T02:54:13.596 DEBUG:teuthology.orchestra.run.smithi152:> stat /dev/nvme3n1 2024-01-24T02:54:13.646 INFO:teuthology.orchestra.run.smithi152.stdout: File: /dev/nvme3n1 2024-01-24T02:54:13.647 INFO:teuthology.orchestra.run.smithi152.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-24T02:54:13.647 INFO:teuthology.orchestra.run.smithi152.stdout:Device: 6h/6d Inode: 485 Links: 1 Device type: 103,6 2024-01-24T02:54:13.647 INFO:teuthology.orchestra.run.smithi152.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-24T02:54:13.647 INFO:teuthology.orchestra.run.smithi152.stdout:Access: 2024-01-24 02:52:57.670470517 +0000 2024-01-24T02:54:13.647 INFO:teuthology.orchestra.run.smithi152.stdout:Modify: 2024-01-24 02:50:57.792251051 +0000 2024-01-24T02:54:13.647 INFO:teuthology.orchestra.run.smithi152.stdout:Change: 2024-01-24 02:50:57.792251051 +0000 2024-01-24T02:54:13.647 INFO:teuthology.orchestra.run.smithi152.stdout: Birth: - 2024-01-24T02:54:13.647 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-01-24T02:54:13.699 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:13 smithi152 bash[16344]: audit 2024-01-24T02:54:12.582610+0000 mon.smithi152 (mon.0) 190 : audit [DBG] from='client.? 172.21.15.152:0/4014210487' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:13.699 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:13 smithi152 bash[16344]: audit 2024-01-24T02:54:12.681770+0000 mon.smithi152 (mon.0) 191 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:13.699 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:13 smithi152 bash[16344]: audit 2024-01-24T02:54:12.684200+0000 mon.smithi152 (mon.0) 192 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:54:13.701 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records in 2024-01-24T02:54:13.701 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records out 2024-01-24T02:54:13.701 INFO:teuthology.orchestra.run.smithi152.stderr:512 bytes copied, 0.000404726 s, 1.3 MB/s 2024-01-24T02:54:13.702 DEBUG:teuthology.orchestra.run.smithi152:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-01-24T02:54:13.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:13 smithi195 bash[19846]: audit 2024-01-24T02:54:12.582610+0000 mon.smithi152 (mon.0) 190 : audit [DBG] from='client.? 172.21.15.152:0/4014210487' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:13.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:13 smithi195 bash[19846]: audit 2024-01-24T02:54:12.681770+0000 mon.smithi152 (mon.0) 191 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:13.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:13 smithi195 bash[19846]: audit 2024-01-24T02:54:12.684200+0000 mon.smithi152 (mon.0) 192 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:54:13.752 DEBUG:teuthology.orchestra.run.smithi152:> stat /dev/nvme4n1 2024-01-24T02:54:13.802 INFO:teuthology.orchestra.run.smithi152.stdout: File: /dev/nvme4n1 2024-01-24T02:54:13.802 INFO:teuthology.orchestra.run.smithi152.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-24T02:54:13.802 INFO:teuthology.orchestra.run.smithi152.stdout:Device: 6h/6d Inode: 491 Links: 1 Device type: 103,8 2024-01-24T02:54:13.802 INFO:teuthology.orchestra.run.smithi152.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-24T02:54:13.802 INFO:teuthology.orchestra.run.smithi152.stdout:Access: 2024-01-24 02:52:57.686470136 +0000 2024-01-24T02:54:13.802 INFO:teuthology.orchestra.run.smithi152.stdout:Modify: 2024-01-24 02:50:57.908306270 +0000 2024-01-24T02:54:13.802 INFO:teuthology.orchestra.run.smithi152.stdout:Change: 2024-01-24 02:50:57.908306270 +0000 2024-01-24T02:54:13.802 INFO:teuthology.orchestra.run.smithi152.stdout: Birth: - 2024-01-24T02:54:13.803 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-01-24T02:54:13.857 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records in 2024-01-24T02:54:13.857 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records out 2024-01-24T02:54:13.857 INFO:teuthology.orchestra.run.smithi152.stderr:512 bytes copied, 0.000416901 s, 1.2 MB/s 2024-01-24T02:54:13.858 DEBUG:teuthology.orchestra.run.smithi152:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-01-24T02:54:13.908 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-01-24T02:54:13.908 DEBUG:teuthology.orchestra.run.smithi195:> dd if=/scratch_devs of=/dev/stdout 2024-01-24T02:54:13.915 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-24T02:54:13.915 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/nvme1n1 2024-01-24T02:54:13.963 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/nvme1n1 2024-01-24T02:54:13.964 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-24T02:54:13.964 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 6h/6d Inode: 473 Links: 1 Device type: 103,2 2024-01-24T02:54:13.964 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-24T02:54:13.964 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-01-24 02:53:45.705366365 +0000 2024-01-24T02:54:13.964 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-01-24 02:50:58.925336242 +0000 2024-01-24T02:54:13.964 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-01-24 02:50:58.925336242 +0000 2024-01-24T02:54:13.964 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-01-24T02:54:13.964 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-01-24T02:54:14.018 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-01-24T02:54:14.018 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-01-24T02:54:14.018 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000351619 s, 1.5 MB/s 2024-01-24T02:54:14.019 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-01-24T02:54:14.072 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/nvme2n1 2024-01-24T02:54:14.123 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/nvme2n1 2024-01-24T02:54:14.123 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-24T02:54:14.123 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 6h/6d Inode: 479 Links: 1 Device type: 103,4 2024-01-24T02:54:14.123 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-24T02:54:14.123 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-01-24 02:53:45.721365984 +0000 2024-01-24T02:54:14.124 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-01-24 02:50:59.037333576 +0000 2024-01-24T02:54:14.124 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-01-24 02:50:59.037333576 +0000 2024-01-24T02:54:14.124 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-01-24T02:54:14.124 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-01-24T02:54:14.178 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-01-24T02:54:14.178 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-01-24T02:54:14.178 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000341669 s, 1.5 MB/s 2024-01-24T02:54:14.179 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-01-24T02:54:14.228 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/nvme3n1 2024-01-24T02:54:14.279 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/nvme3n1 2024-01-24T02:54:14.279 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-24T02:54:14.279 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 6h/6d Inode: 485 Links: 1 Device type: 103,6 2024-01-24T02:54:14.280 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-24T02:54:14.280 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-01-24 02:53:45.729365794 +0000 2024-01-24T02:54:14.280 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-01-24 02:50:59.149330910 +0000 2024-01-24T02:54:14.280 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-01-24 02:50:59.149330910 +0000 2024-01-24T02:54:14.280 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-01-24T02:54:14.280 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-01-24T02:54:14.334 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-01-24T02:54:14.334 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-01-24T02:54:14.334 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000376138 s, 1.4 MB/s 2024-01-24T02:54:14.335 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-01-24T02:54:14.385 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/nvme4n1 2024-01-24T02:54:14.436 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/nvme4n1 2024-01-24T02:54:14.436 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-24T02:54:14.436 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 6h/6d Inode: 491 Links: 1 Device type: 103,8 2024-01-24T02:54:14.436 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-24T02:54:14.436 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-01-24 02:53:45.741365508 +0000 2024-01-24T02:54:14.436 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-01-24 02:50:59.265328149 +0000 2024-01-24T02:54:14.436 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-01-24 02:50:59.265328149 +0000 2024-01-24T02:54:14.437 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-01-24T02:54:14.437 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-01-24T02:54:14.490 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-01-24T02:54:14.490 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-01-24T02:54:14.490 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.00028892 s, 1.8 MB/s 2024-01-24T02:54:14.491 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-01-24T02:54:14.541 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch apply osd --all-available-devices 2024-01-24T02:54:14.595 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:14 smithi195 bash[19846]: cluster 2024-01-24T02:54:13.059675+0000 mgr.smithi152.jkoscf (mgr.14182) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:14.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:14 smithi152 bash[16344]: cluster 2024-01-24T02:54:13.059675+0000 mgr.smithi152.jkoscf (mgr.14182) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:16.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:16 smithi152 bash[16344]: cluster 2024-01-24T02:54:15.060148+0000 mgr.smithi152.jkoscf (mgr.14182) 21 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:16.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:16 smithi195 bash[19846]: cluster 2024-01-24T02:54:15.060148+0000 mgr.smithi152.jkoscf (mgr.14182) 21 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:17.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:17 smithi195 bash[19846]: audit 2024-01-24T02:54:16.581877+0000 mon.smithi152 (mon.0) 193 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:17.864 INFO:teuthology.orchestra.run.smithi195.stdout:Scheduled osd.all-available-devices update... 2024-01-24T02:54:18.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:17 smithi152 bash[16344]: audit 2024-01-24T02:54:16.581877+0000 mon.smithi152 (mon.0) 193 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:18.374 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-01-24T02:54:18.374 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd stat -f json 2024-01-24T02:54:18.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: cluster 2024-01-24T02:54:17.060613+0000 mgr.smithi152.jkoscf (mgr.14182) 22 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:18.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: audit 2024-01-24T02:54:17.861713+0000 mon.smithi152 (mon.0) 194 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:18.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: audit 2024-01-24T02:54:18.309488+0000 mon.smithi152 (mon.0) 195 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:18.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: audit 2024-01-24T02:54:18.319594+0000 mon.smithi152 (mon.0) 196 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:18.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: audit 2024-01-24T02:54:18.321553+0000 mon.smithi152 (mon.0) 197 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:18.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: audit 2024-01-24T02:54:18.323384+0000 mon.smithi152 (mon.0) 198 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T02:54:18.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: audit 2024-01-24T02:54:18.353132+0000 mon.smithi152 (mon.0) 199 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:18.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: audit 2024-01-24T02:54:18.368121+0000 mon.smithi152 (mon.0) 200 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:18.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: audit 2024-01-24T02:54:18.376846+0000 mon.smithi152 (mon.0) 201 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:18.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: audit 2024-01-24T02:54:18.386763+0000 mon.smithi152 (mon.0) 202 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T02:54:18.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: audit 2024-01-24T02:54:18.391621+0000 mon.smithi152 (mon.0) 203 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-24T02:54:18.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: audit 2024-01-24T02:54:18.394655+0000 mon.smithi152 (mon.0) 204 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-24T02:54:18.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: audit 2024-01-24T02:54:18.395208+0000 mon.smithi152 (mon.0) 205 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:18.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:18 smithi195 bash[19846]: audit 2024-01-24T02:54:18.396204+0000 mon.smithi152 (mon.0) 206 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:18.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: cluster 2024-01-24T02:54:17.060613+0000 mgr.smithi152.jkoscf (mgr.14182) 22 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:18.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: audit 2024-01-24T02:54:17.861713+0000 mon.smithi152 (mon.0) 194 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:18.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: audit 2024-01-24T02:54:18.309488+0000 mon.smithi152 (mon.0) 195 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:18.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: audit 2024-01-24T02:54:18.319594+0000 mon.smithi152 (mon.0) 196 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:18.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: audit 2024-01-24T02:54:18.321553+0000 mon.smithi152 (mon.0) 197 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:18.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: audit 2024-01-24T02:54:18.323384+0000 mon.smithi152 (mon.0) 198 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T02:54:18.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: audit 2024-01-24T02:54:18.353132+0000 mon.smithi152 (mon.0) 199 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:18.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: audit 2024-01-24T02:54:18.368121+0000 mon.smithi152 (mon.0) 200 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:18.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: audit 2024-01-24T02:54:18.376846+0000 mon.smithi152 (mon.0) 201 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:18.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: audit 2024-01-24T02:54:18.386763+0000 mon.smithi152 (mon.0) 202 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T02:54:18.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: audit 2024-01-24T02:54:18.391621+0000 mon.smithi152 (mon.0) 203 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-24T02:54:18.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: audit 2024-01-24T02:54:18.394655+0000 mon.smithi152 (mon.0) 204 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-24T02:54:18.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: audit 2024-01-24T02:54:18.395208+0000 mon.smithi152 (mon.0) 205 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:18.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:18 smithi152 bash[16344]: audit 2024-01-24T02:54:18.396204+0000 mon.smithi152 (mon.0) 206 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:19.762 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:19 smithi152 bash[16344]: audit 2024-01-24T02:54:17.849633+0000 mgr.smithi152.jkoscf (mgr.14182) 23 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:54:19.762 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:19 smithi152 bash[16344]: cephadm 2024-01-24T02:54:17.853972+0000 mgr.smithi152.jkoscf (mgr.14182) 24 : cephadm [INF] Marking host: smithi152 for OSDSpec preview refresh. 2024-01-24T02:54:19.762 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:19 smithi152 bash[16344]: cephadm 2024-01-24T02:54:17.854369+0000 mgr.smithi152.jkoscf (mgr.14182) 25 : cephadm [INF] Marking host: smithi195 for OSDSpec preview refresh. 2024-01-24T02:54:19.762 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:19 smithi152 bash[16344]: cephadm 2024-01-24T02:54:17.855119+0000 mgr.smithi152.jkoscf (mgr.14182) 26 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-01-24T02:54:19.762 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:19 smithi152 bash[16344]: cephadm 2024-01-24T02:54:18.325581+0000 mgr.smithi152.jkoscf (mgr.14182) 27 : cephadm [INF] Updating smithi152:/etc/ceph/ceph.conf 2024-01-24T02:54:19.762 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:19 smithi152 bash[16344]: cephadm 2024-01-24T02:54:18.326161+0000 mgr.smithi152.jkoscf (mgr.14182) 28 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-01-24T02:54:19.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:19 smithi195 bash[19846]: audit 2024-01-24T02:54:17.849633+0000 mgr.smithi152.jkoscf (mgr.14182) 23 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:54:19.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:19 smithi195 bash[19846]: cephadm 2024-01-24T02:54:17.853972+0000 mgr.smithi152.jkoscf (mgr.14182) 24 : cephadm [INF] Marking host: smithi152 for OSDSpec preview refresh. 2024-01-24T02:54:19.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:19 smithi195 bash[19846]: cephadm 2024-01-24T02:54:17.854369+0000 mgr.smithi152.jkoscf (mgr.14182) 25 : cephadm [INF] Marking host: smithi195 for OSDSpec preview refresh. 2024-01-24T02:54:19.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:19 smithi195 bash[19846]: cephadm 2024-01-24T02:54:17.855119+0000 mgr.smithi152.jkoscf (mgr.14182) 26 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-01-24T02:54:19.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:19 smithi195 bash[19846]: cephadm 2024-01-24T02:54:18.325581+0000 mgr.smithi152.jkoscf (mgr.14182) 27 : cephadm [INF] Updating smithi152:/etc/ceph/ceph.conf 2024-01-24T02:54:19.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:19 smithi195 bash[19846]: cephadm 2024-01-24T02:54:18.326161+0000 mgr.smithi152.jkoscf (mgr.14182) 28 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-01-24T02:54:20.984 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:20 smithi152 bash[16344]: cluster 2024-01-24T02:54:19.061089+0000 mgr.smithi152.jkoscf (mgr.14182) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:20.989 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:20 smithi195 bash[19846]: cluster 2024-01-24T02:54:19.061089+0000 mgr.smithi152.jkoscf (mgr.14182) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:21.380 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:54:21.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:21 smithi152 bash[16344]: audit 2024-01-24T02:54:21.378556+0000 mon.smithi152 (mon.0) 207 : audit [DBG] from='client.? 172.21.15.152:0/2718818675' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:21.948 INFO:teuthology.orchestra.run.smithi152.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-24T02:54:21.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:21 smithi195 bash[19846]: audit 2024-01-24T02:54:21.378556+0000 mon.smithi152 (mon.0) 207 : audit [DBG] from='client.? 172.21.15.152:0/2718818675' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:22.949 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd stat -f json 2024-01-24T02:54:22.959 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:22 smithi152 bash[16344]: cluster 2024-01-24T02:54:21.061468+0000 mgr.smithi152.jkoscf (mgr.14182) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:22.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:22 smithi195 bash[19846]: cluster 2024-01-24T02:54:21.061468+0000 mgr.smithi152.jkoscf (mgr.14182) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:24.329 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:24 smithi195 bash[19846]: cluster 2024-01-24T02:54:23.061908+0000 mgr.smithi152.jkoscf (mgr.14182) 31 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:24.414 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:24 smithi152 bash[16344]: cluster 2024-01-24T02:54:23.061908+0000 mgr.smithi152.jkoscf (mgr.14182) 31 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:26.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:26 smithi195 bash[19846]: cluster 2024-01-24T02:54:25.062366+0000 mgr.smithi152.jkoscf (mgr.14182) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:26.491 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:26 smithi152 bash[16344]: cluster 2024-01-24T02:54:25.062366+0000 mgr.smithi152.jkoscf (mgr.14182) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:26.895 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:54:27.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:27 smithi152 bash[16344]: audit 2024-01-24T02:54:26.717763+0000 mon.smithi152 (mon.0) 208 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "21e10507-d08d-41af-9de7-b9a1a0b8769e"}]: dispatch 2024-01-24T02:54:27.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:27 smithi152 bash[16344]: audit 2024-01-24T02:54:26.718535+0000 mon.smithi195 (mon.1) 2 : audit [INF] from='client.? 172.21.15.195:0/542619153' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "21e10507-d08d-41af-9de7-b9a1a0b8769e"}]: dispatch 2024-01-24T02:54:27.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:27 smithi152 bash[16344]: audit 2024-01-24T02:54:26.723658+0000 mon.smithi152 (mon.0) 209 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "21e10507-d08d-41af-9de7-b9a1a0b8769e"}]': finished 2024-01-24T02:54:27.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:27 smithi152 bash[16344]: cluster 2024-01-24T02:54:26.723843+0000 mon.smithi152 (mon.0) 210 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-01-24T02:54:27.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:27 smithi152 bash[16344]: audit 2024-01-24T02:54:26.724073+0000 mon.smithi152 (mon.0) 211 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:27.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:27 smithi152 bash[16344]: audit 2024-01-24T02:54:26.893671+0000 mon.smithi152 (mon.0) 212 : audit [DBG] from='client.? 172.21.15.152:0/2444870909' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:27.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:27 smithi195 bash[19846]: audit 2024-01-24T02:54:26.717763+0000 mon.smithi152 (mon.0) 208 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "21e10507-d08d-41af-9de7-b9a1a0b8769e"}]: dispatch 2024-01-24T02:54:27.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:27 smithi195 bash[19846]: audit 2024-01-24T02:54:26.718535+0000 mon.smithi195 (mon.1) 2 : audit [INF] from='client.? 172.21.15.195:0/542619153' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "21e10507-d08d-41af-9de7-b9a1a0b8769e"}]: dispatch 2024-01-24T02:54:27.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:27 smithi195 bash[19846]: audit 2024-01-24T02:54:26.723658+0000 mon.smithi152 (mon.0) 209 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "21e10507-d08d-41af-9de7-b9a1a0b8769e"}]': finished 2024-01-24T02:54:27.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:27 smithi195 bash[19846]: cluster 2024-01-24T02:54:26.723843+0000 mon.smithi152 (mon.0) 210 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-01-24T02:54:27.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:27 smithi195 bash[19846]: audit 2024-01-24T02:54:26.724073+0000 mon.smithi152 (mon.0) 211 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:27.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:27 smithi195 bash[19846]: audit 2024-01-24T02:54:26.893671+0000 mon.smithi152 (mon.0) 212 : audit [DBG] from='client.? 172.21.15.152:0/2444870909' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:27.614 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":6,"num_osds":1,"num_up_osds":0,"osd_up_since":0,"num_in_osds":1,"osd_in_since":1706064866,"num_remapped_pgs":0} 2024-01-24T02:54:28.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:28 smithi195 bash[19846]: cluster 2024-01-24T02:54:27.062841+0000 mgr.smithi152.jkoscf (mgr.14182) 33 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:28.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:28 smithi195 bash[19846]: audit 2024-01-24T02:54:27.765811+0000 mon.smithi195 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.195:0/3441862772' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:28.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:28 smithi195 bash[19846]: audit 2024-01-24T02:54:28.098934+0000 mon.smithi152 (mon.0) 213 : audit [INF] from='client.? 172.21.15.152:0/2554199113' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f68c6b3d-d0bd-455e-b7ff-5370a83c7a7c"}]: dispatch 2024-01-24T02:54:28.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:28 smithi152 bash[16344]: cluster 2024-01-24T02:54:27.062841+0000 mgr.smithi152.jkoscf (mgr.14182) 33 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:28.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:28 smithi152 bash[16344]: audit 2024-01-24T02:54:27.765811+0000 mon.smithi195 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.195:0/3441862772' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:28.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:28 smithi152 bash[16344]: audit 2024-01-24T02:54:28.098934+0000 mon.smithi152 (mon.0) 213 : audit [INF] from='client.? 172.21.15.152:0/2554199113' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f68c6b3d-d0bd-455e-b7ff-5370a83c7a7c"}]: dispatch 2024-01-24T02:54:28.615 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd stat -f json 2024-01-24T02:54:29.489 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:29 smithi195 bash[19846]: audit 2024-01-24T02:54:28.105461+0000 mon.smithi152 (mon.0) 214 : audit [INF] from='client.? 172.21.15.152:0/2554199113' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f68c6b3d-d0bd-455e-b7ff-5370a83c7a7c"}]': finished 2024-01-24T02:54:29.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:29 smithi195 bash[19846]: cluster 2024-01-24T02:54:28.105575+0000 mon.smithi152 (mon.0) 215 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-01-24T02:54:29.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:29 smithi195 bash[19846]: audit 2024-01-24T02:54:28.106194+0000 mon.smithi152 (mon.0) 216 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:29.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:29 smithi195 bash[19846]: audit 2024-01-24T02:54:28.106897+0000 mon.smithi152 (mon.0) 217 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:29.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:29 smithi152 bash[16344]: audit 2024-01-24T02:54:28.105461+0000 mon.smithi152 (mon.0) 214 : audit [INF] from='client.? 172.21.15.152:0/2554199113' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f68c6b3d-d0bd-455e-b7ff-5370a83c7a7c"}]': finished 2024-01-24T02:54:29.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:29 smithi152 bash[16344]: cluster 2024-01-24T02:54:28.105575+0000 mon.smithi152 (mon.0) 215 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-01-24T02:54:29.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:29 smithi152 bash[16344]: audit 2024-01-24T02:54:28.106194+0000 mon.smithi152 (mon.0) 216 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:29.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:29 smithi152 bash[16344]: audit 2024-01-24T02:54:28.106897+0000 mon.smithi152 (mon.0) 217 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:30.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:30 smithi152 bash[16344]: cluster 2024-01-24T02:54:29.063281+0000 mgr.smithi152.jkoscf (mgr.14182) 34 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:30.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:30 smithi152 bash[16344]: audit 2024-01-24T02:54:29.172750+0000 mon.smithi152 (mon.0) 218 : audit [DBG] from='client.? 172.21.15.152:0/2909590481' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:30.489 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:30 smithi195 bash[19846]: cluster 2024-01-24T02:54:29.063281+0000 mgr.smithi152.jkoscf (mgr.14182) 34 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:30.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:30 smithi195 bash[19846]: audit 2024-01-24T02:54:29.172750+0000 mon.smithi152 (mon.0) 218 : audit [DBG] from='client.? 172.21.15.152:0/2909590481' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:31.387 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:31 smithi152 bash[16344]: audit 2024-01-24T02:54:30.474011+0000 mon.smithi152 (mon.0) 219 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8956ac53-b604-4add-a140-c3702482222a"}]: dispatch 2024-01-24T02:54:31.388 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:31 smithi152 bash[16344]: audit 2024-01-24T02:54:30.474191+0000 mon.smithi195 (mon.1) 4 : audit [INF] from='client.? 172.21.15.195:0/3461408160' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8956ac53-b604-4add-a140-c3702482222a"}]: dispatch 2024-01-24T02:54:31.388 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:31 smithi152 bash[16344]: audit 2024-01-24T02:54:30.480317+0000 mon.smithi152 (mon.0) 220 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8956ac53-b604-4add-a140-c3702482222a"}]': finished 2024-01-24T02:54:31.388 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:31 smithi152 bash[16344]: cluster 2024-01-24T02:54:30.480392+0000 mon.smithi152 (mon.0) 221 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-01-24T02:54:31.388 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:31 smithi152 bash[16344]: audit 2024-01-24T02:54:30.480658+0000 mon.smithi152 (mon.0) 222 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:31.388 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:31 smithi152 bash[16344]: audit 2024-01-24T02:54:30.481333+0000 mon.smithi152 (mon.0) 223 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:31.388 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:31 smithi152 bash[16344]: audit 2024-01-24T02:54:30.481804+0000 mon.smithi152 (mon.0) 224 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:54:31.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:31 smithi195 bash[19846]: audit 2024-01-24T02:54:30.474011+0000 mon.smithi152 (mon.0) 219 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8956ac53-b604-4add-a140-c3702482222a"}]: dispatch 2024-01-24T02:54:31.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:31 smithi195 bash[19846]: audit 2024-01-24T02:54:30.474191+0000 mon.smithi195 (mon.1) 4 : audit [INF] from='client.? 172.21.15.195:0/3461408160' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8956ac53-b604-4add-a140-c3702482222a"}]: dispatch 2024-01-24T02:54:31.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:31 smithi195 bash[19846]: audit 2024-01-24T02:54:30.480317+0000 mon.smithi152 (mon.0) 220 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8956ac53-b604-4add-a140-c3702482222a"}]': finished 2024-01-24T02:54:31.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:31 smithi195 bash[19846]: cluster 2024-01-24T02:54:30.480392+0000 mon.smithi152 (mon.0) 221 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-01-24T02:54:31.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:31 smithi195 bash[19846]: audit 2024-01-24T02:54:30.480658+0000 mon.smithi152 (mon.0) 222 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:31.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:31 smithi195 bash[19846]: audit 2024-01-24T02:54:30.481333+0000 mon.smithi152 (mon.0) 223 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:31.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:31 smithi195 bash[19846]: audit 2024-01-24T02:54:30.481804+0000 mon.smithi152 (mon.0) 224 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:54:31.728 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:54:32.419 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":8,"num_osds":3,"num_up_osds":0,"osd_up_since":0,"num_in_osds":3,"osd_in_since":1706064870,"num_remapped_pgs":0} 2024-01-24T02:54:32.420 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:32 smithi152 bash[16344]: cluster 2024-01-24T02:54:31.063800+0000 mgr.smithi152.jkoscf (mgr.14182) 35 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:32.420 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:32 smithi152 bash[16344]: audit 2024-01-24T02:54:31.439912+0000 mon.smithi195 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.195:0/4234519924' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:32.420 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:32 smithi152 bash[16344]: audit 2024-01-24T02:54:31.726905+0000 mon.smithi152 (mon.0) 225 : audit [DBG] from='client.? 172.21.15.152:0/3111009920' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:32.420 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:32 smithi152 bash[16344]: audit 2024-01-24T02:54:31.904032+0000 mon.smithi152 (mon.0) 226 : audit [INF] from='client.? 172.21.15.152:0/426106140' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "391cc68d-47c9-4281-8b79-761599f03bb2"}]: dispatch 2024-01-24T02:54:32.420 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:32 smithi152 bash[16344]: audit 2024-01-24T02:54:31.912192+0000 mon.smithi152 (mon.0) 227 : audit [INF] from='client.? 172.21.15.152:0/426106140' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "391cc68d-47c9-4281-8b79-761599f03bb2"}]': finished 2024-01-24T02:54:32.420 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:32 smithi152 bash[16344]: cluster 2024-01-24T02:54:31.912239+0000 mon.smithi152 (mon.0) 228 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-01-24T02:54:32.420 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:32 smithi152 bash[16344]: audit 2024-01-24T02:54:31.912324+0000 mon.smithi152 (mon.0) 229 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:32.420 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:32 smithi152 bash[16344]: audit 2024-01-24T02:54:31.912633+0000 mon.smithi152 (mon.0) 230 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:32.420 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:32 smithi152 bash[16344]: audit 2024-01-24T02:54:31.912797+0000 mon.smithi152 (mon.0) 231 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:54:32.420 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:32 smithi152 bash[16344]: audit 2024-01-24T02:54:31.912965+0000 mon.smithi152 (mon.0) 232 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:54:32.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:32 smithi195 bash[19846]: cluster 2024-01-24T02:54:31.063800+0000 mgr.smithi152.jkoscf (mgr.14182) 35 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:32.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:32 smithi195 bash[19846]: audit 2024-01-24T02:54:31.439912+0000 mon.smithi195 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.195:0/4234519924' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:32.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:32 smithi195 bash[19846]: audit 2024-01-24T02:54:31.726905+0000 mon.smithi152 (mon.0) 225 : audit [DBG] from='client.? 172.21.15.152:0/3111009920' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:32.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:32 smithi195 bash[19846]: audit 2024-01-24T02:54:31.904032+0000 mon.smithi152 (mon.0) 226 : audit [INF] from='client.? 172.21.15.152:0/426106140' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "391cc68d-47c9-4281-8b79-761599f03bb2"}]: dispatch 2024-01-24T02:54:32.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:32 smithi195 bash[19846]: audit 2024-01-24T02:54:31.912192+0000 mon.smithi152 (mon.0) 227 : audit [INF] from='client.? 172.21.15.152:0/426106140' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "391cc68d-47c9-4281-8b79-761599f03bb2"}]': finished 2024-01-24T02:54:32.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:32 smithi195 bash[19846]: cluster 2024-01-24T02:54:31.912239+0000 mon.smithi152 (mon.0) 228 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-01-24T02:54:32.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:32 smithi195 bash[19846]: audit 2024-01-24T02:54:31.912324+0000 mon.smithi152 (mon.0) 229 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:32.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:32 smithi195 bash[19846]: audit 2024-01-24T02:54:31.912633+0000 mon.smithi152 (mon.0) 230 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:32.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:32 smithi195 bash[19846]: audit 2024-01-24T02:54:31.912797+0000 mon.smithi152 (mon.0) 231 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:54:32.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:32 smithi195 bash[19846]: audit 2024-01-24T02:54:31.912965+0000 mon.smithi152 (mon.0) 232 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:54:33.421 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd stat -f json 2024-01-24T02:54:34.486 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:34 smithi152 bash[16344]: cluster 2024-01-24T02:54:33.064300+0000 mgr.smithi152.jkoscf (mgr.14182) 36 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:34.486 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:34 smithi152 bash[16344]: audit 2024-01-24T02:54:33.232794+0000 mon.smithi152 (mon.0) 233 : audit [DBG] from='client.? 172.21.15.152:0/400131272' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:34.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:34 smithi195 bash[19846]: cluster 2024-01-24T02:54:33.064300+0000 mgr.smithi152.jkoscf (mgr.14182) 36 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:34.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:34 smithi195 bash[19846]: audit 2024-01-24T02:54:33.232794+0000 mon.smithi152 (mon.0) 233 : audit [DBG] from='client.? 172.21.15.152:0/400131272' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:35.429 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:35 smithi152 bash[16344]: audit 2024-01-24T02:54:34.146819+0000 mon.smithi152 (mon.0) 234 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2ca476b4-dbd2-48fe-b87b-256a6762bee4"}]: dispatch 2024-01-24T02:54:35.429 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:35 smithi152 bash[16344]: audit 2024-01-24T02:54:34.146991+0000 mon.smithi195 (mon.1) 6 : audit [INF] from='client.? 172.21.15.195:0/775800524' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2ca476b4-dbd2-48fe-b87b-256a6762bee4"}]: dispatch 2024-01-24T02:54:35.429 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:35 smithi152 bash[16344]: audit 2024-01-24T02:54:34.159472+0000 mon.smithi152 (mon.0) 235 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2ca476b4-dbd2-48fe-b87b-256a6762bee4"}]': finished 2024-01-24T02:54:35.429 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:35 smithi152 bash[16344]: cluster 2024-01-24T02:54:34.159757+0000 mon.smithi152 (mon.0) 236 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-01-24T02:54:35.429 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:35 smithi152 bash[16344]: audit 2024-01-24T02:54:34.160008+0000 mon.smithi152 (mon.0) 237 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:35.429 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:35 smithi152 bash[16344]: audit 2024-01-24T02:54:34.160478+0000 mon.smithi152 (mon.0) 238 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:35.429 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:35 smithi152 bash[16344]: audit 2024-01-24T02:54:34.160754+0000 mon.smithi152 (mon.0) 239 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:54:35.429 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:35 smithi152 bash[16344]: audit 2024-01-24T02:54:34.161011+0000 mon.smithi152 (mon.0) 240 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:54:35.429 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:35 smithi152 bash[16344]: audit 2024-01-24T02:54:34.161282+0000 mon.smithi152 (mon.0) 241 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:54:35.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:35 smithi195 bash[19846]: audit 2024-01-24T02:54:34.146819+0000 mon.smithi152 (mon.0) 234 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2ca476b4-dbd2-48fe-b87b-256a6762bee4"}]: dispatch 2024-01-24T02:54:35.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:35 smithi195 bash[19846]: audit 2024-01-24T02:54:34.146991+0000 mon.smithi195 (mon.1) 6 : audit [INF] from='client.? 172.21.15.195:0/775800524' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2ca476b4-dbd2-48fe-b87b-256a6762bee4"}]: dispatch 2024-01-24T02:54:35.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:35 smithi195 bash[19846]: audit 2024-01-24T02:54:34.159472+0000 mon.smithi152 (mon.0) 235 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2ca476b4-dbd2-48fe-b87b-256a6762bee4"}]': finished 2024-01-24T02:54:35.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:35 smithi195 bash[19846]: cluster 2024-01-24T02:54:34.159757+0000 mon.smithi152 (mon.0) 236 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-01-24T02:54:35.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:35 smithi195 bash[19846]: audit 2024-01-24T02:54:34.160008+0000 mon.smithi152 (mon.0) 237 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:35.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:35 smithi195 bash[19846]: audit 2024-01-24T02:54:34.160478+0000 mon.smithi152 (mon.0) 238 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:35.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:35 smithi195 bash[19846]: audit 2024-01-24T02:54:34.160754+0000 mon.smithi152 (mon.0) 239 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:54:35.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:35 smithi195 bash[19846]: audit 2024-01-24T02:54:34.161011+0000 mon.smithi152 (mon.0) 240 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:54:35.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:35 smithi195 bash[19846]: audit 2024-01-24T02:54:34.161282+0000 mon.smithi152 (mon.0) 241 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:54:36.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:36 smithi195 bash[19846]: cluster 2024-01-24T02:54:35.064758+0000 mgr.smithi152.jkoscf (mgr.14182) 37 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:36.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:36 smithi195 bash[19846]: audit 2024-01-24T02:54:35.176092+0000 mon.smithi195 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.195:0/3600149028' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:36.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:36 smithi195 bash[19846]: audit 2024-01-24T02:54:36.063563+0000 mon.smithi152 (mon.0) 242 : audit [INF] from='client.? 172.21.15.152:0/1129073516' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "beb2417b-faaf-4c72-b58b-7245024af5b5"}]: dispatch 2024-01-24T02:54:36.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:36 smithi195 bash[19846]: audit 2024-01-24T02:54:36.074095+0000 mon.smithi152 (mon.0) 243 : audit [INF] from='client.? 172.21.15.152:0/1129073516' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "beb2417b-faaf-4c72-b58b-7245024af5b5"}]': finished 2024-01-24T02:54:36.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:36 smithi195 bash[19846]: cluster 2024-01-24T02:54:36.074246+0000 mon.smithi152 (mon.0) 244 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-01-24T02:54:36.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:36 smithi195 bash[19846]: audit 2024-01-24T02:54:36.074416+0000 mon.smithi152 (mon.0) 245 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:36.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:36 smithi195 bash[19846]: audit 2024-01-24T02:54:36.074649+0000 mon.smithi152 (mon.0) 246 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:36.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:36 smithi195 bash[19846]: audit 2024-01-24T02:54:36.074796+0000 mon.smithi152 (mon.0) 247 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:54:36.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:36 smithi195 bash[19846]: audit 2024-01-24T02:54:36.074970+0000 mon.smithi152 (mon.0) 248 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:54:36.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:36 smithi195 bash[19846]: audit 2024-01-24T02:54:36.075143+0000 mon.smithi152 (mon.0) 249 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:54:36.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:36 smithi195 bash[19846]: audit 2024-01-24T02:54:36.075307+0000 mon.smithi152 (mon.0) 250 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:54:36.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:36 smithi152 bash[16344]: cluster 2024-01-24T02:54:35.064758+0000 mgr.smithi152.jkoscf (mgr.14182) 37 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:36.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:36 smithi152 bash[16344]: audit 2024-01-24T02:54:35.176092+0000 mon.smithi195 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.195:0/3600149028' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:36.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:36 smithi152 bash[16344]: audit 2024-01-24T02:54:36.063563+0000 mon.smithi152 (mon.0) 242 : audit [INF] from='client.? 172.21.15.152:0/1129073516' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "beb2417b-faaf-4c72-b58b-7245024af5b5"}]: dispatch 2024-01-24T02:54:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:36 smithi152 bash[16344]: audit 2024-01-24T02:54:36.074095+0000 mon.smithi152 (mon.0) 243 : audit [INF] from='client.? 172.21.15.152:0/1129073516' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "beb2417b-faaf-4c72-b58b-7245024af5b5"}]': finished 2024-01-24T02:54:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:36 smithi152 bash[16344]: cluster 2024-01-24T02:54:36.074246+0000 mon.smithi152 (mon.0) 244 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-01-24T02:54:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:36 smithi152 bash[16344]: audit 2024-01-24T02:54:36.074416+0000 mon.smithi152 (mon.0) 245 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:36 smithi152 bash[16344]: audit 2024-01-24T02:54:36.074649+0000 mon.smithi152 (mon.0) 246 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:36 smithi152 bash[16344]: audit 2024-01-24T02:54:36.074796+0000 mon.smithi152 (mon.0) 247 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:54:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:36 smithi152 bash[16344]: audit 2024-01-24T02:54:36.074970+0000 mon.smithi152 (mon.0) 248 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:54:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:36 smithi152 bash[16344]: audit 2024-01-24T02:54:36.075143+0000 mon.smithi152 (mon.0) 249 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:54:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:36 smithi152 bash[16344]: audit 2024-01-24T02:54:36.075307+0000 mon.smithi152 (mon.0) 250 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:54:36.706 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:54:37.322 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1706064876,"num_remapped_pgs":0} 2024-01-24T02:54:37.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:37 smithi195 bash[19846]: audit 2024-01-24T02:54:36.705149+0000 mon.smithi152 (mon.0) 251 : audit [DBG] from='client.? 172.21.15.152:0/4111142085' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:37.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:37 smithi152 bash[16344]: audit 2024-01-24T02:54:36.705149+0000 mon.smithi152 (mon.0) 251 : audit [DBG] from='client.? 172.21.15.152:0/4111142085' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:38.323 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd stat -f json 2024-01-24T02:54:38.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:38 smithi195 bash[19846]: cluster 2024-01-24T02:54:37.065256+0000 mgr.smithi152.jkoscf (mgr.14182) 38 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:38.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:38 smithi195 bash[19846]: audit 2024-01-24T02:54:37.188151+0000 mon.smithi152 (mon.0) 252 : audit [DBG] from='client.? 172.21.15.152:0/1700591018' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:38.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:38 smithi195 bash[19846]: audit 2024-01-24T02:54:37.885043+0000 mon.smithi152 (mon.0) 253 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "77577e7b-2890-4666-a72a-d488d6d7da7b"}]: dispatch 2024-01-24T02:54:38.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:38 smithi195 bash[19846]: audit 2024-01-24T02:54:37.885110+0000 mon.smithi195 (mon.1) 8 : audit [INF] from='client.? 172.21.15.195:0/582649769' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "77577e7b-2890-4666-a72a-d488d6d7da7b"}]: dispatch 2024-01-24T02:54:38.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:38 smithi195 bash[19846]: audit 2024-01-24T02:54:37.893753+0000 mon.smithi152 (mon.0) 254 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "77577e7b-2890-4666-a72a-d488d6d7da7b"}]': finished 2024-01-24T02:54:38.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:38 smithi195 bash[19846]: cluster 2024-01-24T02:54:37.893912+0000 mon.smithi152 (mon.0) 255 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-01-24T02:54:38.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:38 smithi195 bash[19846]: audit 2024-01-24T02:54:37.894146+0000 mon.smithi152 (mon.0) 256 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:38.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:38 smithi195 bash[19846]: audit 2024-01-24T02:54:37.894814+0000 mon.smithi152 (mon.0) 257 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:38.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:38 smithi195 bash[19846]: audit 2024-01-24T02:54:37.895196+0000 mon.smithi152 (mon.0) 258 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:54:38.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:38 smithi195 bash[19846]: audit 2024-01-24T02:54:37.895569+0000 mon.smithi152 (mon.0) 259 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:54:38.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:38 smithi195 bash[19846]: audit 2024-01-24T02:54:37.895943+0000 mon.smithi152 (mon.0) 260 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:54:38.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:38 smithi195 bash[19846]: audit 2024-01-24T02:54:37.896319+0000 mon.smithi152 (mon.0) 261 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:54:38.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:38 smithi195 bash[19846]: audit 2024-01-24T02:54:37.896701+0000 mon.smithi152 (mon.0) 262 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:54:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:38 smithi152 bash[16344]: cluster 2024-01-24T02:54:37.065256+0000 mgr.smithi152.jkoscf (mgr.14182) 38 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:38 smithi152 bash[16344]: audit 2024-01-24T02:54:37.188151+0000 mon.smithi152 (mon.0) 252 : audit [DBG] from='client.? 172.21.15.152:0/1700591018' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:38 smithi152 bash[16344]: audit 2024-01-24T02:54:37.885043+0000 mon.smithi152 (mon.0) 253 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "77577e7b-2890-4666-a72a-d488d6d7da7b"}]: dispatch 2024-01-24T02:54:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:38 smithi152 bash[16344]: audit 2024-01-24T02:54:37.885110+0000 mon.smithi195 (mon.1) 8 : audit [INF] from='client.? 172.21.15.195:0/582649769' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "77577e7b-2890-4666-a72a-d488d6d7da7b"}]: dispatch 2024-01-24T02:54:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:38 smithi152 bash[16344]: audit 2024-01-24T02:54:37.893753+0000 mon.smithi152 (mon.0) 254 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "77577e7b-2890-4666-a72a-d488d6d7da7b"}]': finished 2024-01-24T02:54:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:38 smithi152 bash[16344]: cluster 2024-01-24T02:54:37.893912+0000 mon.smithi152 (mon.0) 255 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-01-24T02:54:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:38 smithi152 bash[16344]: audit 2024-01-24T02:54:37.894146+0000 mon.smithi152 (mon.0) 256 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:38 smithi152 bash[16344]: audit 2024-01-24T02:54:37.894814+0000 mon.smithi152 (mon.0) 257 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:38 smithi152 bash[16344]: audit 2024-01-24T02:54:37.895196+0000 mon.smithi152 (mon.0) 258 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:54:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:38 smithi152 bash[16344]: audit 2024-01-24T02:54:37.895569+0000 mon.smithi152 (mon.0) 259 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:54:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:38 smithi152 bash[16344]: audit 2024-01-24T02:54:37.895943+0000 mon.smithi152 (mon.0) 260 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:54:38.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:38 smithi152 bash[16344]: audit 2024-01-24T02:54:37.896319+0000 mon.smithi152 (mon.0) 261 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:54:38.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:38 smithi152 bash[16344]: audit 2024-01-24T02:54:37.896701+0000 mon.smithi152 (mon.0) 262 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:54:39.479 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:39 smithi152 bash[16344]: audit 2024-01-24T02:54:38.900253+0000 mon.smithi195 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.195:0/4026702613' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:39.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:39 smithi195 bash[19846]: audit 2024-01-24T02:54:38.900253+0000 mon.smithi195 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.195:0/4026702613' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:40 smithi195 bash[19846]: cluster 2024-01-24T02:54:39.065762+0000 mgr.smithi152.jkoscf (mgr.14182) 39 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:40 smithi195 bash[19846]: audit 2024-01-24T02:54:39.968488+0000 mon.smithi152 (mon.0) 263 : audit [INF] from='client.? 172.21.15.152:0/127917429' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c801747f-6eb0-4277-9d33-333fd642167b"}]: dispatch 2024-01-24T02:54:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:40 smithi195 bash[19846]: audit 2024-01-24T02:54:39.976331+0000 mon.smithi152 (mon.0) 264 : audit [INF] from='client.? 172.21.15.152:0/127917429' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c801747f-6eb0-4277-9d33-333fd642167b"}]': finished 2024-01-24T02:54:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:40 smithi195 bash[19846]: cluster 2024-01-24T02:54:39.976447+0000 mon.smithi152 (mon.0) 265 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-01-24T02:54:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:40 smithi195 bash[19846]: audit 2024-01-24T02:54:39.976633+0000 mon.smithi152 (mon.0) 266 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:40 smithi195 bash[19846]: audit 2024-01-24T02:54:39.977015+0000 mon.smithi152 (mon.0) 267 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:40 smithi195 bash[19846]: audit 2024-01-24T02:54:39.977242+0000 mon.smithi152 (mon.0) 268 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:54:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:40 smithi195 bash[19846]: audit 2024-01-24T02:54:39.977460+0000 mon.smithi152 (mon.0) 269 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:54:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:40 smithi195 bash[19846]: audit 2024-01-24T02:54:39.977678+0000 mon.smithi152 (mon.0) 270 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:54:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:40 smithi195 bash[19846]: audit 2024-01-24T02:54:39.977894+0000 mon.smithi152 (mon.0) 271 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:54:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:40 smithi195 bash[19846]: audit 2024-01-24T02:54:39.978108+0000 mon.smithi152 (mon.0) 272 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:54:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:40 smithi195 bash[19846]: audit 2024-01-24T02:54:39.978334+0000 mon.smithi152 (mon.0) 273 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:54:40.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:40 smithi152 bash[16344]: cluster 2024-01-24T02:54:39.065762+0000 mgr.smithi152.jkoscf (mgr.14182) 39 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:40.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:40 smithi152 bash[16344]: audit 2024-01-24T02:54:39.968488+0000 mon.smithi152 (mon.0) 263 : audit [INF] from='client.? 172.21.15.152:0/127917429' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c801747f-6eb0-4277-9d33-333fd642167b"}]: dispatch 2024-01-24T02:54:40.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:40 smithi152 bash[16344]: audit 2024-01-24T02:54:39.976331+0000 mon.smithi152 (mon.0) 264 : audit [INF] from='client.? 172.21.15.152:0/127917429' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c801747f-6eb0-4277-9d33-333fd642167b"}]': finished 2024-01-24T02:54:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:40 smithi152 bash[16344]: cluster 2024-01-24T02:54:39.976447+0000 mon.smithi152 (mon.0) 265 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-01-24T02:54:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:40 smithi152 bash[16344]: audit 2024-01-24T02:54:39.976633+0000 mon.smithi152 (mon.0) 266 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:54:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:40 smithi152 bash[16344]: audit 2024-01-24T02:54:39.977015+0000 mon.smithi152 (mon.0) 267 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:54:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:40 smithi152 bash[16344]: audit 2024-01-24T02:54:39.977242+0000 mon.smithi152 (mon.0) 268 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:54:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:40 smithi152 bash[16344]: audit 2024-01-24T02:54:39.977460+0000 mon.smithi152 (mon.0) 269 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:54:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:40 smithi152 bash[16344]: audit 2024-01-24T02:54:39.977678+0000 mon.smithi152 (mon.0) 270 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:54:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:40 smithi152 bash[16344]: audit 2024-01-24T02:54:39.977894+0000 mon.smithi152 (mon.0) 271 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:54:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:40 smithi152 bash[16344]: audit 2024-01-24T02:54:39.978108+0000 mon.smithi152 (mon.0) 272 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:54:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:40 smithi152 bash[16344]: audit 2024-01-24T02:54:39.978334+0000 mon.smithi152 (mon.0) 273 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:54:41.747 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:54:42.303 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1706064879,"num_remapped_pgs":0} 2024-01-24T02:54:42.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:42 smithi195 bash[19846]: cluster 2024-01-24T02:54:41.066305+0000 mgr.smithi152.jkoscf (mgr.14182) 40 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:42.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:42 smithi195 bash[19846]: audit 2024-01-24T02:54:41.728428+0000 mon.smithi152 (mon.0) 274 : audit [DBG] from='client.? 172.21.15.152:0/844190588' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:42.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:42 smithi195 bash[19846]: audit 2024-01-24T02:54:41.745929+0000 mon.smithi152 (mon.0) 275 : audit [DBG] from='client.? 172.21.15.152:0/2161657593' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:42.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:42 smithi152 bash[16344]: cluster 2024-01-24T02:54:41.066305+0000 mgr.smithi152.jkoscf (mgr.14182) 40 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:42.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:42 smithi152 bash[16344]: audit 2024-01-24T02:54:41.728428+0000 mon.smithi152 (mon.0) 274 : audit [DBG] from='client.? 172.21.15.152:0/844190588' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-24T02:54:42.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:42 smithi152 bash[16344]: audit 2024-01-24T02:54:41.745929+0000 mon.smithi152 (mon.0) 275 : audit [DBG] from='client.? 172.21.15.152:0/2161657593' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:43.304 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd stat -f json 2024-01-24T02:54:44.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:44 smithi195 bash[19846]: cluster 2024-01-24T02:54:43.066783+0000 mgr.smithi152.jkoscf (mgr.14182) 41 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:44.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:44 smithi152 bash[16344]: cluster 2024-01-24T02:54:43.066783+0000 mgr.smithi152.jkoscf (mgr.14182) 41 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:46.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:46 smithi195 bash[19846]: cluster 2024-01-24T02:54:45.067195+0000 mgr.smithi152.jkoscf (mgr.14182) 42 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:46.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:46 smithi152 bash[16344]: cluster 2024-01-24T02:54:45.067195+0000 mgr.smithi152.jkoscf (mgr.14182) 42 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:46.745 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:54:47.273 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1706064879,"num_remapped_pgs":0} 2024-01-24T02:54:47.489 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:47 smithi195 bash[19846]: audit 2024-01-24T02:54:46.744157+0000 mon.smithi152 (mon.0) 276 : audit [DBG] from='client.? 172.21.15.152:0/328704481' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:47.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:47 smithi152 bash[16344]: audit 2024-01-24T02:54:46.744157+0000 mon.smithi152 (mon.0) 276 : audit [DBG] from='client.? 172.21.15.152:0/328704481' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:48.274 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd stat -f json 2024-01-24T02:54:48.489 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:48 smithi195 bash[19846]: cluster 2024-01-24T02:54:47.067613+0000 mgr.smithi152.jkoscf (mgr.14182) 43 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:48.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:48 smithi152 bash[16344]: cluster 2024-01-24T02:54:47.067613+0000 mgr.smithi152.jkoscf (mgr.14182) 43 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:50.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:50 smithi195 bash[19846]: cluster 2024-01-24T02:54:49.068131+0000 mgr.smithi152.jkoscf (mgr.14182) 44 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:50.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:50 smithi195 bash[19846]: audit 2024-01-24T02:54:50.127425+0000 mon.smithi152 (mon.0) 277 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-01-24T02:54:50.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:50 smithi195 bash[19846]: audit 2024-01-24T02:54:50.128515+0000 mon.smithi152 (mon.0) 278 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:50.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:50 smithi152 bash[16344]: cluster 2024-01-24T02:54:49.068131+0000 mgr.smithi152.jkoscf (mgr.14182) 44 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:50.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:50 smithi152 bash[16344]: audit 2024-01-24T02:54:50.127425+0000 mon.smithi152 (mon.0) 277 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-01-24T02:54:50.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:50 smithi152 bash[16344]: audit 2024-01-24T02:54:50.128515+0000 mon.smithi152 (mon.0) 278 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:51.389 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:51 smithi152 bash[16344]: cephadm 2024-01-24T02:54:50.129397+0000 mgr.smithi152.jkoscf (mgr.14182) 45 : cephadm [INF] Deploying daemon osd.0 on smithi195 2024-01-24T02:54:51.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:51 smithi195 bash[19846]: cephadm 2024-01-24T02:54:50.129397+0000 mgr.smithi152.jkoscf (mgr.14182) 45 : cephadm [INF] Deploying daemon osd.0 on smithi195 2024-01-24T02:54:51.651 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:54:52.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:52 smithi195 bash[19846]: cluster 2024-01-24T02:54:51.068695+0000 mgr.smithi152.jkoscf (mgr.14182) 46 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:52.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:52 smithi195 bash[19846]: audit 2024-01-24T02:54:51.650462+0000 mon.smithi152 (mon.0) 279 : audit [DBG] from='client.? 172.21.15.152:0/3129444285' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:52.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:52 smithi152 bash[16344]: cluster 2024-01-24T02:54:51.068695+0000 mgr.smithi152.jkoscf (mgr.14182) 46 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:52.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:52 smithi152 bash[16344]: audit 2024-01-24T02:54:51.650462+0000 mon.smithi152 (mon.0) 279 : audit [DBG] from='client.? 172.21.15.152:0/3129444285' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:52.631 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1706064879,"num_remapped_pgs":0} 2024-01-24T02:54:53.632 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd stat -f json 2024-01-24T02:54:54.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:54 smithi195 bash[19846]: cluster 2024-01-24T02:54:53.069158+0000 mgr.smithi152.jkoscf (mgr.14182) 47 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:54.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:54 smithi195 bash[19846]: audit 2024-01-24T02:54:53.868302+0000 mon.smithi152 (mon.0) 280 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-01-24T02:54:54.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:54 smithi195 bash[19846]: audit 2024-01-24T02:54:53.869559+0000 mon.smithi152 (mon.0) 281 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:54.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:54 smithi195 bash[19846]: audit 2024-01-24T02:54:54.002664+0000 mon.smithi152 (mon.0) 282 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:54.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:54 smithi195 bash[19846]: audit 2024-01-24T02:54:54.004160+0000 mon.smithi152 (mon.0) 283 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-01-24T02:54:54.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:54 smithi195 bash[19846]: audit 2024-01-24T02:54:54.005498+0000 mon.smithi152 (mon.0) 284 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:54 smithi152 bash[16344]: cluster 2024-01-24T02:54:53.069158+0000 mgr.smithi152.jkoscf (mgr.14182) 47 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:54 smithi152 bash[16344]: audit 2024-01-24T02:54:53.868302+0000 mon.smithi152 (mon.0) 280 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-01-24T02:54:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:54 smithi152 bash[16344]: audit 2024-01-24T02:54:53.869559+0000 mon.smithi152 (mon.0) 281 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:54 smithi152 bash[16344]: audit 2024-01-24T02:54:54.002664+0000 mon.smithi152 (mon.0) 282 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:54 smithi152 bash[16344]: audit 2024-01-24T02:54:54.004160+0000 mon.smithi152 (mon.0) 283 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-01-24T02:54:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:54 smithi152 bash[16344]: audit 2024-01-24T02:54:54.005498+0000 mon.smithi152 (mon.0) 284 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:55.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:55 smithi152 bash[16344]: cephadm 2024-01-24T02:54:53.870596+0000 mgr.smithi152.jkoscf (mgr.14182) 48 : cephadm [INF] Deploying daemon osd.1 on smithi152 2024-01-24T02:54:55.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:55 smithi152 bash[16344]: cephadm 2024-01-24T02:54:54.006711+0000 mgr.smithi152.jkoscf (mgr.14182) 49 : cephadm [INF] Deploying daemon osd.2 on smithi195 2024-01-24T02:54:55.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:55 smithi195 bash[19846]: cephadm 2024-01-24T02:54:53.870596+0000 mgr.smithi152.jkoscf (mgr.14182) 48 : cephadm [INF] Deploying daemon osd.1 on smithi152 2024-01-24T02:54:55.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:55 smithi195 bash[19846]: cephadm 2024-01-24T02:54:54.006711+0000 mgr.smithi152.jkoscf (mgr.14182) 49 : cephadm [INF] Deploying daemon osd.2 on smithi195 2024-01-24T02:54:56.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:56 smithi195 bash[19846]: cluster 2024-01-24T02:54:55.069620+0000 mgr.smithi152.jkoscf (mgr.14182) 50 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:56.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:56 smithi152 bash[16344]: cluster 2024-01-24T02:54:55.069620+0000 mgr.smithi152.jkoscf (mgr.14182) 50 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:57.584 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:54:58.327 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1706064879,"num_remapped_pgs":0} 2024-01-24T02:54:58.527 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:58 smithi195 bash[19846]: cluster 2024-01-24T02:54:57.070105+0000 mgr.smithi152.jkoscf (mgr.14182) 51 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:58.527 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:58 smithi195 bash[19846]: audit 2024-01-24T02:54:57.583874+0000 mon.smithi152 (mon.0) 285 : audit [DBG] from='client.? 172.21.15.152:0/505062832' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:58.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:58 smithi152 bash[16344]: cluster 2024-01-24T02:54:57.070105+0000 mgr.smithi152.jkoscf (mgr.14182) 51 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:54:58.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:58 smithi152 bash[16344]: audit 2024-01-24T02:54:57.583874+0000 mon.smithi152 (mon.0) 285 : audit [DBG] from='client.? 172.21.15.152:0/505062832' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:54:59.329 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd stat -f json 2024-01-24T02:54:59.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:59 smithi152 bash[16344]: audit 2024-01-24T02:54:58.514420+0000 mon.smithi152 (mon.0) 286 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:59.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:59 smithi152 bash[16344]: audit 2024-01-24T02:54:58.515432+0000 mon.smithi152 (mon.0) 287 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-01-24T02:54:59.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:59 smithi152 bash[16344]: audit 2024-01-24T02:54:58.516424+0000 mon.smithi152 (mon.0) 288 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:59.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:59 smithi152 bash[16344]: cephadm 2024-01-24T02:54:58.517250+0000 mgr.smithi152.jkoscf (mgr.14182) 52 : cephadm [INF] Deploying daemon osd.3 on smithi152 2024-01-24T02:54:59.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:59 smithi152 bash[16344]: audit 2024-01-24T02:54:58.689765+0000 mon.smithi152 (mon.0) 289 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:59.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:59 smithi152 bash[16344]: audit 2024-01-24T02:54:58.691453+0000 mon.smithi152 (mon.0) 290 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-01-24T02:54:59.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:54:59 smithi152 bash[16344]: audit 2024-01-24T02:54:58.692837+0000 mon.smithi152 (mon.0) 291 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:59.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:59 smithi195 bash[19846]: audit 2024-01-24T02:54:58.514420+0000 mon.smithi152 (mon.0) 286 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:59.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:59 smithi195 bash[19846]: audit 2024-01-24T02:54:58.515432+0000 mon.smithi152 (mon.0) 287 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-01-24T02:54:59.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:59 smithi195 bash[19846]: audit 2024-01-24T02:54:58.516424+0000 mon.smithi152 (mon.0) 288 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:54:59.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:59 smithi195 bash[19846]: cephadm 2024-01-24T02:54:58.517250+0000 mgr.smithi152.jkoscf (mgr.14182) 52 : cephadm [INF] Deploying daemon osd.3 on smithi152 2024-01-24T02:54:59.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:59 smithi195 bash[19846]: audit 2024-01-24T02:54:58.689765+0000 mon.smithi152 (mon.0) 289 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:54:59.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:59 smithi195 bash[19846]: audit 2024-01-24T02:54:58.691453+0000 mon.smithi152 (mon.0) 290 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-01-24T02:54:59.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:54:59 smithi195 bash[19846]: audit 2024-01-24T02:54:58.692837+0000 mon.smithi152 (mon.0) 291 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:00.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:00 smithi152 bash[16344]: cephadm 2024-01-24T02:54:58.694216+0000 mgr.smithi152.jkoscf (mgr.14182) 53 : cephadm [INF] Deploying daemon osd.4 on smithi195 2024-01-24T02:55:00.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:00 smithi152 bash[16344]: cluster 2024-01-24T02:54:59.070605+0000 mgr.smithi152.jkoscf (mgr.14182) 54 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:55:00.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:00 smithi195 bash[19846]: cephadm 2024-01-24T02:54:58.694216+0000 mgr.smithi152.jkoscf (mgr.14182) 53 : cephadm [INF] Deploying daemon osd.4 on smithi195 2024-01-24T02:55:00.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:00 smithi195 bash[19846]: cluster 2024-01-24T02:54:59.070605+0000 mgr.smithi152.jkoscf (mgr.14182) 54 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:55:02.625 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:02 smithi195 bash[19846]: cluster 2024-01-24T02:55:01.070969+0000 mgr.smithi152.jkoscf (mgr.14182) 55 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:55:02.625 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:02 smithi195 bash[19846]: audit 2024-01-24T02:55:02.003567+0000 mon.smithi195 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/2490905,v1:172.21.15.195:6801/2490905]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-01-24T02:55:02.625 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:02 smithi195 bash[19846]: audit 2024-01-24T02:55:02.004026+0000 mon.smithi152 (mon.0) 292 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-01-24T02:55:02.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:02 smithi152 bash[16344]: cluster 2024-01-24T02:55:01.070969+0000 mgr.smithi152.jkoscf (mgr.14182) 55 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:55:02.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:02 smithi152 bash[16344]: audit 2024-01-24T02:55:02.003567+0000 mon.smithi195 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/2490905,v1:172.21.15.195:6801/2490905]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-01-24T02:55:02.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:02 smithi152 bash[16344]: audit 2024-01-24T02:55:02.004026+0000 mon.smithi152 (mon.0) 292 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-01-24T02:55:03.713 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:03 smithi195 bash[19846]: audit 2024-01-24T02:55:02.526401+0000 mon.smithi152 (mon.0) 293 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-01-24T02:55:03.713 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:03 smithi195 bash[19846]: cluster 2024-01-24T02:55:02.526577+0000 mon.smithi152 (mon.0) 294 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-01-24T02:55:03.713 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:03 smithi195 bash[19846]: audit 2024-01-24T02:55:02.527349+0000 mon.smithi152 (mon.0) 295 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:55:03.713 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:03 smithi195 bash[19846]: audit 2024-01-24T02:55:02.528081+0000 mon.smithi152 (mon.0) 296 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:03.714 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:03 smithi195 bash[19846]: audit 2024-01-24T02:55:02.528610+0000 mon.smithi152 (mon.0) 297 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:03.714 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:03 smithi195 bash[19846]: audit 2024-01-24T02:55:02.528634+0000 mon.smithi195 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/2490905,v1:172.21.15.195:6801/2490905]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:03.714 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:03 smithi195 bash[19846]: audit 2024-01-24T02:55:02.531885+0000 mon.smithi152 (mon.0) 298 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:03.714 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:03 smithi195 bash[19846]: audit 2024-01-24T02:55:02.532503+0000 mon.smithi152 (mon.0) 299 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:03.714 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:03 smithi195 bash[19846]: audit 2024-01-24T02:55:02.533087+0000 mon.smithi152 (mon.0) 300 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:03.714 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:03 smithi195 bash[19846]: audit 2024-01-24T02:55:02.533560+0000 mon.smithi152 (mon.0) 301 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:03.714 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:03 smithi195 bash[19846]: audit 2024-01-24T02:55:02.534079+0000 mon.smithi152 (mon.0) 302 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:03.714 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:03 smithi195 bash[19846]: audit 2024-01-24T02:55:02.534974+0000 mon.smithi152 (mon.0) 303 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:03.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:03 smithi152 bash[16344]: audit 2024-01-24T02:55:02.526401+0000 mon.smithi152 (mon.0) 293 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-01-24T02:55:03.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:03 smithi152 bash[16344]: cluster 2024-01-24T02:55:02.526577+0000 mon.smithi152 (mon.0) 294 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-01-24T02:55:03.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:03 smithi152 bash[16344]: audit 2024-01-24T02:55:02.527349+0000 mon.smithi152 (mon.0) 295 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:55:03.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:03 smithi152 bash[16344]: audit 2024-01-24T02:55:02.528081+0000 mon.smithi152 (mon.0) 296 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:03.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:03 smithi152 bash[16344]: audit 2024-01-24T02:55:02.528610+0000 mon.smithi152 (mon.0) 297 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:03.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:03 smithi152 bash[16344]: audit 2024-01-24T02:55:02.528634+0000 mon.smithi195 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/2490905,v1:172.21.15.195:6801/2490905]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:03.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:03 smithi152 bash[16344]: audit 2024-01-24T02:55:02.531885+0000 mon.smithi152 (mon.0) 298 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:03.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:03 smithi152 bash[16344]: audit 2024-01-24T02:55:02.532503+0000 mon.smithi152 (mon.0) 299 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:03.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:03 smithi152 bash[16344]: audit 2024-01-24T02:55:02.533087+0000 mon.smithi152 (mon.0) 300 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:03.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:03 smithi152 bash[16344]: audit 2024-01-24T02:55:02.533560+0000 mon.smithi152 (mon.0) 301 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:03.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:03 smithi152 bash[16344]: audit 2024-01-24T02:55:02.534079+0000 mon.smithi152 (mon.0) 302 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:03.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:03 smithi152 bash[16344]: audit 2024-01-24T02:55:02.534974+0000 mon.smithi152 (mon.0) 303 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:03.995 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:55:04.687 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: cluster 2024-01-24T02:55:03.071290+0000 mgr.smithi152.jkoscf (mgr.14182) 56 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:55:04.687 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.535828+0000 mon.smithi152 (mon.0) 304 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-01-24T02:55:04.687 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: cluster 2024-01-24T02:55:03.536033+0000 mon.smithi152 (mon.0) 305 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-01-24T02:55:04.687 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.536698+0000 mon.smithi152 (mon.0) 306 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:55:04.687 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.537126+0000 mon.smithi152 (mon.0) 307 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:04.687 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.537366+0000 mon.smithi152 (mon.0) 308 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:04.687 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.537630+0000 mon.smithi152 (mon.0) 309 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:04.687 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.537874+0000 mon.smithi152 (mon.0) 310 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:04.687 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.538125+0000 mon.smithi152 (mon.0) 311 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:04.687 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.538410+0000 mon.smithi152 (mon.0) 312 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:04.687 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.538632+0000 mon.smithi152 (mon.0) 313 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:04.687 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.546566+0000 mon.smithi152 (mon.0) 314 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:55:04.688 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.883494+0000 mon.smithi152 (mon.0) 315 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:04.688 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.885147+0000 mon.smithi152 (mon.0) 316 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-01-24T02:55:04.688 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.886654+0000 mon.smithi152 (mon.0) 317 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:04.688 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:04 smithi152 bash[16344]: audit 2024-01-24T02:55:03.994852+0000 mon.smithi152 (mon.0) 318 : audit [DBG] from='client.? 172.21.15.152:0/1076745598' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:55:04.780 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":15,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1706064879,"num_remapped_pgs":0} 2024-01-24T02:55:04.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: cluster 2024-01-24T02:55:03.071290+0000 mgr.smithi152.jkoscf (mgr.14182) 56 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:55:04.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.535828+0000 mon.smithi152 (mon.0) 304 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-01-24T02:55:04.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: cluster 2024-01-24T02:55:03.536033+0000 mon.smithi152 (mon.0) 305 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-01-24T02:55:04.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.536698+0000 mon.smithi152 (mon.0) 306 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:55:04.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.537126+0000 mon.smithi152 (mon.0) 307 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:04.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.537366+0000 mon.smithi152 (mon.0) 308 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:04.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.537630+0000 mon.smithi152 (mon.0) 309 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.537874+0000 mon.smithi152 (mon.0) 310 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.538125+0000 mon.smithi152 (mon.0) 311 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.538410+0000 mon.smithi152 (mon.0) 312 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.538632+0000 mon.smithi152 (mon.0) 313 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.546566+0000 mon.smithi152 (mon.0) 314 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:55:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.883494+0000 mon.smithi152 (mon.0) 315 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.885147+0000 mon.smithi152 (mon.0) 316 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-01-24T02:55:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.886654+0000 mon.smithi152 (mon.0) 317 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:04 smithi195 bash[19846]: audit 2024-01-24T02:55:03.994852+0000 mon.smithi152 (mon.0) 318 : audit [DBG] from='client.? 172.21.15.152:0/1076745598' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:55:05.661 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: cluster 2024-01-24T02:55:03.025883+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: cluster 2024-01-24T02:55:03.025972+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: cephadm 2024-01-24T02:55:03.887937+0000 mgr.smithi152.jkoscf (mgr.14182) 57 : cephadm [INF] Deploying daemon osd.6 on smithi195 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: cluster 2024-01-24T02:55:04.545139+0000 mon.smithi152 (mon.0) 319 : cluster [INF] osd.0 [v2:172.21.15.195:6800/2490905,v1:172.21.15.195:6801/2490905] boot 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: cluster 2024-01-24T02:55:04.545208+0000 mon.smithi152 (mon.0) 320 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: audit 2024-01-24T02:55:04.545734+0000 mon.smithi152 (mon.0) 321 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: audit 2024-01-24T02:55:04.546236+0000 mon.smithi152 (mon.0) 322 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: audit 2024-01-24T02:55:04.546614+0000 mon.smithi152 (mon.0) 323 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: audit 2024-01-24T02:55:04.546984+0000 mon.smithi152 (mon.0) 324 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: audit 2024-01-24T02:55:04.547285+0000 mon.smithi152 (mon.0) 325 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: audit 2024-01-24T02:55:04.547578+0000 mon.smithi152 (mon.0) 326 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: audit 2024-01-24T02:55:04.547868+0000 mon.smithi152 (mon.0) 327 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: audit 2024-01-24T02:55:04.548162+0000 mon.smithi152 (mon.0) 328 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: audit 2024-01-24T02:55:04.722613+0000 mon.smithi152 (mon.0) 329 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:05.662 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: audit 2024-01-24T02:55:04.723580+0000 mon.smithi152 (mon.0) 330 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-01-24T02:55:05.663 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:05 smithi195 bash[19846]: audit 2024-01-24T02:55:04.724642+0000 mon.smithi152 (mon.0) 331 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:05.780 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd stat -f json 2024-01-24T02:55:05.792 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: cluster 2024-01-24T02:55:03.025883+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:05.793 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: cluster 2024-01-24T02:55:03.025972+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:05.793 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: cephadm 2024-01-24T02:55:03.887937+0000 mgr.smithi152.jkoscf (mgr.14182) 57 : cephadm [INF] Deploying daemon osd.6 on smithi195 2024-01-24T02:55:05.793 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: cluster 2024-01-24T02:55:04.545139+0000 mon.smithi152 (mon.0) 319 : cluster [INF] osd.0 [v2:172.21.15.195:6800/2490905,v1:172.21.15.195:6801/2490905] boot 2024-01-24T02:55:05.793 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: cluster 2024-01-24T02:55:04.545208+0000 mon.smithi152 (mon.0) 320 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-01-24T02:55:05.793 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: audit 2024-01-24T02:55:04.545734+0000 mon.smithi152 (mon.0) 321 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-24T02:55:05.793 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: audit 2024-01-24T02:55:04.546236+0000 mon.smithi152 (mon.0) 322 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:05.793 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: audit 2024-01-24T02:55:04.546614+0000 mon.smithi152 (mon.0) 323 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:05.793 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: audit 2024-01-24T02:55:04.546984+0000 mon.smithi152 (mon.0) 324 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:05.793 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: audit 2024-01-24T02:55:04.547285+0000 mon.smithi152 (mon.0) 325 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:05.793 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: audit 2024-01-24T02:55:04.547578+0000 mon.smithi152 (mon.0) 326 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:05.793 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: audit 2024-01-24T02:55:04.547868+0000 mon.smithi152 (mon.0) 327 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:05.793 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: audit 2024-01-24T02:55:04.548162+0000 mon.smithi152 (mon.0) 328 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:05.794 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: audit 2024-01-24T02:55:04.722613+0000 mon.smithi152 (mon.0) 329 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:05.794 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: audit 2024-01-24T02:55:04.723580+0000 mon.smithi152 (mon.0) 330 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-01-24T02:55:05.794 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:05 smithi152 bash[16344]: audit 2024-01-24T02:55:04.724642+0000 mon.smithi152 (mon.0) 331 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:06.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:06 smithi152 bash[16344]: cephadm 2024-01-24T02:55:04.725514+0000 mgr.smithi152.jkoscf (mgr.14182) 58 : cephadm [INF] Deploying daemon osd.5 on smithi152 2024-01-24T02:55:06.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:06 smithi152 bash[16344]: cluster 2024-01-24T02:55:05.071724+0000 mgr.smithi152.jkoscf (mgr.14182) 59 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:55:06.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:06 smithi152 bash[16344]: cluster 2024-01-24T02:55:05.737445+0000 mon.smithi152 (mon.0) 332 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-01-24T02:55:06.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:06 smithi152 bash[16344]: audit 2024-01-24T02:55:05.737688+0000 mon.smithi152 (mon.0) 333 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:06.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:06 smithi152 bash[16344]: audit 2024-01-24T02:55:05.738279+0000 mon.smithi152 (mon.0) 334 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:06.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:06 smithi152 bash[16344]: audit 2024-01-24T02:55:05.738675+0000 mon.smithi152 (mon.0) 335 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:06.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:06 smithi152 bash[16344]: audit 2024-01-24T02:55:05.739065+0000 mon.smithi152 (mon.0) 336 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:06.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:06 smithi152 bash[16344]: audit 2024-01-24T02:55:05.739416+0000 mon.smithi152 (mon.0) 337 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:06.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:06 smithi152 bash[16344]: audit 2024-01-24T02:55:05.739889+0000 mon.smithi152 (mon.0) 338 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:06.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:06 smithi152 bash[16344]: audit 2024-01-24T02:55:05.740308+0000 mon.smithi152 (mon.0) 339 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:06.963 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:06 smithi195 bash[19846]: cephadm 2024-01-24T02:55:04.725514+0000 mgr.smithi152.jkoscf (mgr.14182) 58 : cephadm [INF] Deploying daemon osd.5 on smithi152 2024-01-24T02:55:06.963 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:06 smithi195 bash[19846]: cluster 2024-01-24T02:55:05.071724+0000 mgr.smithi152.jkoscf (mgr.14182) 59 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-24T02:55:06.963 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:06 smithi195 bash[19846]: cluster 2024-01-24T02:55:05.737445+0000 mon.smithi152 (mon.0) 332 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-01-24T02:55:06.963 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:06 smithi195 bash[19846]: audit 2024-01-24T02:55:05.737688+0000 mon.smithi152 (mon.0) 333 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:06.963 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:06 smithi195 bash[19846]: audit 2024-01-24T02:55:05.738279+0000 mon.smithi152 (mon.0) 334 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:06.963 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:06 smithi195 bash[19846]: audit 2024-01-24T02:55:05.738675+0000 mon.smithi152 (mon.0) 335 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:06.963 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:06 smithi195 bash[19846]: audit 2024-01-24T02:55:05.739065+0000 mon.smithi152 (mon.0) 336 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:06.963 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:06 smithi195 bash[19846]: audit 2024-01-24T02:55:05.739416+0000 mon.smithi152 (mon.0) 337 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:06.963 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:06 smithi195 bash[19846]: audit 2024-01-24T02:55:05.739889+0000 mon.smithi152 (mon.0) 338 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:06.963 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:06 smithi195 bash[19846]: audit 2024-01-24T02:55:05.740308+0000 mon.smithi152 (mon.0) 339 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:07.658 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:07 smithi152 bash[16344]: audit 2024-01-24T02:55:06.966747+0000 mon.smithi195 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/1871178635,v1:172.21.15.195:6809/1871178635]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-01-24T02:55:07.658 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:07 smithi152 bash[16344]: audit 2024-01-24T02:55:06.966843+0000 mon.smithi152 (mon.0) 340 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-01-24T02:55:07.659 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:07 smithi152 bash[16344]: audit 2024-01-24T02:55:07.352916+0000 mon.smithi152 (mon.0) 341 : audit [INF] from='osd.1 [v2:172.21.15.152:6802/3034004976,v1:172.21.15.152:6803/3034004976]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-01-24T02:55:07.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:07 smithi195 bash[19846]: audit 2024-01-24T02:55:06.966747+0000 mon.smithi195 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/1871178635,v1:172.21.15.195:6809/1871178635]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-01-24T02:55:07.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:07 smithi195 bash[19846]: audit 2024-01-24T02:55:06.966843+0000 mon.smithi152 (mon.0) 340 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-01-24T02:55:07.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:07 smithi195 bash[19846]: audit 2024-01-24T02:55:07.352916+0000 mon.smithi152 (mon.0) 341 : audit [INF] from='osd.1 [v2:172.21.15.152:6802/3034004976,v1:172.21.15.152:6803/3034004976]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-01-24T02:55:08.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: cluster 2024-01-24T02:55:07.072074+0000 mgr.smithi152.jkoscf (mgr.14182) 60 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-01-24T02:55:08.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: audit 2024-01-24T02:55:07.566900+0000 mon.smithi152 (mon.0) 342 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-01-24T02:55:08.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: audit 2024-01-24T02:55:07.567043+0000 mon.smithi152 (mon.0) 343 : audit [INF] from='osd.1 [v2:172.21.15.152:6802/3034004976,v1:172.21.15.152:6803/3034004976]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-01-24T02:55:08.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: cluster 2024-01-24T02:55:07.567163+0000 mon.smithi152 (mon.0) 344 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-01-24T02:55:08.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: audit 2024-01-24T02:55:07.567428+0000 mon.smithi152 (mon.0) 345 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:08.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: audit 2024-01-24T02:55:07.568233+0000 mon.smithi195 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/1871178635,v1:172.21.15.195:6809/1871178635]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:08.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: audit 2024-01-24T02:55:07.568818+0000 mon.smithi152 (mon.0) 346 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:08.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: audit 2024-01-24T02:55:07.569578+0000 mon.smithi152 (mon.0) 347 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:08.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: audit 2024-01-24T02:55:07.570223+0000 mon.smithi152 (mon.0) 348 : audit [INF] from='osd.1 [v2:172.21.15.152:6802/3034004976,v1:172.21.15.152:6803/3034004976]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-01-24T02:55:08.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: audit 2024-01-24T02:55:07.570810+0000 mon.smithi152 (mon.0) 349 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:08.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: audit 2024-01-24T02:55:07.571363+0000 mon.smithi152 (mon.0) 350 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:08.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: audit 2024-01-24T02:55:07.571976+0000 mon.smithi152 (mon.0) 351 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:08.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: audit 2024-01-24T02:55:07.572573+0000 mon.smithi152 (mon.0) 352 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:08.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:08 smithi152 bash[16344]: audit 2024-01-24T02:55:07.573178+0000 mon.smithi152 (mon.0) 353 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:08.932 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: cluster 2024-01-24T02:55:07.072074+0000 mgr.smithi152.jkoscf (mgr.14182) 60 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-01-24T02:55:08.933 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: audit 2024-01-24T02:55:07.566900+0000 mon.smithi152 (mon.0) 342 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-01-24T02:55:08.933 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: audit 2024-01-24T02:55:07.567043+0000 mon.smithi152 (mon.0) 343 : audit [INF] from='osd.1 [v2:172.21.15.152:6802/3034004976,v1:172.21.15.152:6803/3034004976]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-01-24T02:55:08.933 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: cluster 2024-01-24T02:55:07.567163+0000 mon.smithi152 (mon.0) 344 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-01-24T02:55:08.933 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: audit 2024-01-24T02:55:07.567428+0000 mon.smithi152 (mon.0) 345 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:08.933 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: audit 2024-01-24T02:55:07.568233+0000 mon.smithi195 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/1871178635,v1:172.21.15.195:6809/1871178635]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:08.933 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: audit 2024-01-24T02:55:07.568818+0000 mon.smithi152 (mon.0) 346 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:08.933 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: audit 2024-01-24T02:55:07.569578+0000 mon.smithi152 (mon.0) 347 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:08.933 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: audit 2024-01-24T02:55:07.570223+0000 mon.smithi152 (mon.0) 348 : audit [INF] from='osd.1 [v2:172.21.15.152:6802/3034004976,v1:172.21.15.152:6803/3034004976]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-01-24T02:55:08.933 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: audit 2024-01-24T02:55:07.570810+0000 mon.smithi152 (mon.0) 349 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:08.933 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: audit 2024-01-24T02:55:07.571363+0000 mon.smithi152 (mon.0) 350 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:08.933 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: audit 2024-01-24T02:55:07.571976+0000 mon.smithi152 (mon.0) 351 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:08.933 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: audit 2024-01-24T02:55:07.572573+0000 mon.smithi152 (mon.0) 352 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:08.933 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:08 smithi195 bash[19846]: audit 2024-01-24T02:55:07.573178+0000 mon.smithi152 (mon.0) 353 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:09.941 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:09 smithi152 bash[16344]: audit 2024-01-24T02:55:08.569257+0000 mon.smithi152 (mon.0) 354 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-01-24T02:55:09.941 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:09 smithi152 bash[16344]: audit 2024-01-24T02:55:08.569483+0000 mon.smithi152 (mon.0) 355 : audit [INF] from='osd.1 [v2:172.21.15.152:6802/3034004976,v1:172.21.15.152:6803/3034004976]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-01-24T02:55:09.941 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:09 smithi152 bash[16344]: cluster 2024-01-24T02:55:08.569663+0000 mon.smithi152 (mon.0) 356 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-01-24T02:55:09.941 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:09 smithi152 bash[16344]: audit 2024-01-24T02:55:08.570520+0000 mon.smithi152 (mon.0) 357 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:09.941 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:09 smithi152 bash[16344]: audit 2024-01-24T02:55:08.571160+0000 mon.smithi152 (mon.0) 358 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:09.941 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:09 smithi152 bash[16344]: audit 2024-01-24T02:55:08.571732+0000 mon.smithi152 (mon.0) 359 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:09.941 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:09 smithi152 bash[16344]: audit 2024-01-24T02:55:08.571922+0000 mon.smithi152 (mon.0) 360 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:09.941 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:09 smithi152 bash[16344]: audit 2024-01-24T02:55:08.572106+0000 mon.smithi152 (mon.0) 361 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:09.941 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:09 smithi152 bash[16344]: audit 2024-01-24T02:55:08.572388+0000 mon.smithi152 (mon.0) 362 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:09.942 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:09 smithi152 bash[16344]: audit 2024-01-24T02:55:08.572541+0000 mon.smithi152 (mon.0) 363 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:09.942 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:09 smithi152 bash[16344]: audit 2024-01-24T02:55:08.579903+0000 mon.smithi152 (mon.0) 364 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:09.942 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:09 smithi152 bash[16344]: audit 2024-01-24T02:55:08.580207+0000 mon.smithi152 (mon.0) 365 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:09.942 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:09 smithi152 bash[16344]: audit 2024-01-24T02:55:08.972277+0000 mon.smithi152 (mon.0) 366 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:09.986 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:09 smithi195 bash[19846]: audit 2024-01-24T02:55:08.569257+0000 mon.smithi152 (mon.0) 354 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-01-24T02:55:09.986 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:09 smithi195 bash[19846]: audit 2024-01-24T02:55:08.569483+0000 mon.smithi152 (mon.0) 355 : audit [INF] from='osd.1 [v2:172.21.15.152:6802/3034004976,v1:172.21.15.152:6803/3034004976]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-01-24T02:55:09.986 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:09 smithi195 bash[19846]: cluster 2024-01-24T02:55:08.569663+0000 mon.smithi152 (mon.0) 356 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-01-24T02:55:09.987 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:09 smithi195 bash[19846]: audit 2024-01-24T02:55:08.570520+0000 mon.smithi152 (mon.0) 357 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:09.987 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:09 smithi195 bash[19846]: audit 2024-01-24T02:55:08.571160+0000 mon.smithi152 (mon.0) 358 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:09.987 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:09 smithi195 bash[19846]: audit 2024-01-24T02:55:08.571732+0000 mon.smithi152 (mon.0) 359 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:09.987 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:09 smithi195 bash[19846]: audit 2024-01-24T02:55:08.571922+0000 mon.smithi152 (mon.0) 360 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:09.987 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:09 smithi195 bash[19846]: audit 2024-01-24T02:55:08.572106+0000 mon.smithi152 (mon.0) 361 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:09.987 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:09 smithi195 bash[19846]: audit 2024-01-24T02:55:08.572388+0000 mon.smithi152 (mon.0) 362 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:09.987 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:09 smithi195 bash[19846]: audit 2024-01-24T02:55:08.572541+0000 mon.smithi152 (mon.0) 363 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:09.987 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:09 smithi195 bash[19846]: audit 2024-01-24T02:55:08.579903+0000 mon.smithi152 (mon.0) 364 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:09.987 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:09 smithi195 bash[19846]: audit 2024-01-24T02:55:08.580207+0000 mon.smithi152 (mon.0) 365 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:09.987 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:09 smithi195 bash[19846]: audit 2024-01-24T02:55:08.972277+0000 mon.smithi152 (mon.0) 366 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:10.831 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:55:10.899 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: cluster 2024-01-24T02:55:07.994868+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:10.899 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: cluster 2024-01-24T02:55:07.994958+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:10.899 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: cluster 2024-01-24T02:55:08.306334+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:10.899 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: cluster 2024-01-24T02:55:08.306429+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:10.899 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: cluster 2024-01-24T02:55:09.072337+0000 mgr.smithi152.jkoscf (mgr.14182) 61 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-01-24T02:55:10.899 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: cluster 2024-01-24T02:55:09.580485+0000 mon.smithi152 (mon.0) 367 : cluster [INF] osd.1 [v2:172.21.15.152:6802/3034004976,v1:172.21.15.152:6803/3034004976] boot 2024-01-24T02:55:10.899 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: cluster 2024-01-24T02:55:09.580611+0000 mon.smithi152 (mon.0) 368 : cluster [INF] osd.2 [v2:172.21.15.195:6808/1871178635,v1:172.21.15.195:6809/1871178635] boot 2024-01-24T02:55:10.899 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: cluster 2024-01-24T02:55:09.580731+0000 mon.smithi152 (mon.0) 369 : cluster [DBG] osdmap e20: 8 total, 3 up, 8 in 2024-01-24T02:55:10.900 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: audit 2024-01-24T02:55:09.581597+0000 mon.smithi152 (mon.0) 370 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:10.900 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: audit 2024-01-24T02:55:09.582833+0000 mon.smithi152 (mon.0) 371 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:10.900 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: audit 2024-01-24T02:55:09.587974+0000 mon.smithi152 (mon.0) 372 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:10.900 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: audit 2024-01-24T02:55:09.588205+0000 mon.smithi152 (mon.0) 373 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:10.900 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: audit 2024-01-24T02:55:09.588395+0000 mon.smithi152 (mon.0) 374 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:10.900 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: audit 2024-01-24T02:55:09.588589+0000 mon.smithi152 (mon.0) 375 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:10.900 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: audit 2024-01-24T02:55:09.588773+0000 mon.smithi152 (mon.0) 376 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:10.900 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:10 smithi195 bash[19846]: audit 2024-01-24T02:55:09.589001+0000 mon.smithi152 (mon.0) 377 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-01-24T02:55:10.901 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: cluster 2024-01-24T02:55:07.994868+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:10.901 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: cluster 2024-01-24T02:55:07.994958+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:10.901 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: cluster 2024-01-24T02:55:08.306334+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:10.901 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: cluster 2024-01-24T02:55:08.306429+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:10.901 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: cluster 2024-01-24T02:55:09.072337+0000 mgr.smithi152.jkoscf (mgr.14182) 61 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-01-24T02:55:10.901 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: cluster 2024-01-24T02:55:09.580485+0000 mon.smithi152 (mon.0) 367 : cluster [INF] osd.1 [v2:172.21.15.152:6802/3034004976,v1:172.21.15.152:6803/3034004976] boot 2024-01-24T02:55:10.901 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: cluster 2024-01-24T02:55:09.580611+0000 mon.smithi152 (mon.0) 368 : cluster [INF] osd.2 [v2:172.21.15.195:6808/1871178635,v1:172.21.15.195:6809/1871178635] boot 2024-01-24T02:55:10.901 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: cluster 2024-01-24T02:55:09.580731+0000 mon.smithi152 (mon.0) 369 : cluster [DBG] osdmap e20: 8 total, 3 up, 8 in 2024-01-24T02:55:10.901 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: audit 2024-01-24T02:55:09.581597+0000 mon.smithi152 (mon.0) 370 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-24T02:55:10.901 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: audit 2024-01-24T02:55:09.582833+0000 mon.smithi152 (mon.0) 371 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-24T02:55:10.901 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: audit 2024-01-24T02:55:09.587974+0000 mon.smithi152 (mon.0) 372 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:10.901 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: audit 2024-01-24T02:55:09.588205+0000 mon.smithi152 (mon.0) 373 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:10.901 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: audit 2024-01-24T02:55:09.588395+0000 mon.smithi152 (mon.0) 374 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:10.902 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: audit 2024-01-24T02:55:09.588589+0000 mon.smithi152 (mon.0) 375 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:10.902 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: audit 2024-01-24T02:55:09.588773+0000 mon.smithi152 (mon.0) 376 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:10.902 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:10 smithi152 bash[16344]: audit 2024-01-24T02:55:09.589001+0000 mon.smithi152 (mon.0) 377 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-01-24T02:55:11.881 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:11 smithi152 bash[16344]: audit 2024-01-24T02:55:10.597153+0000 mon.smithi152 (mon.0) 378 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-01-24T02:55:11.881 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:11 smithi152 bash[16344]: cluster 2024-01-24T02:55:10.597284+0000 mon.smithi152 (mon.0) 379 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-01-24T02:55:11.881 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:11 smithi152 bash[16344]: audit 2024-01-24T02:55:10.597485+0000 mon.smithi152 (mon.0) 380 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:11.882 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:11 smithi152 bash[16344]: audit 2024-01-24T02:55:10.597874+0000 mon.smithi152 (mon.0) 381 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:11.882 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:11 smithi152 bash[16344]: audit 2024-01-24T02:55:10.598141+0000 mon.smithi152 (mon.0) 382 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:11.882 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:11 smithi152 bash[16344]: audit 2024-01-24T02:55:10.598685+0000 mon.smithi152 (mon.0) 383 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:11.882 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:11 smithi152 bash[16344]: audit 2024-01-24T02:55:10.598896+0000 mon.smithi152 (mon.0) 384 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:11.882 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:11 smithi152 bash[16344]: audit 2024-01-24T02:55:10.599924+0000 mon.smithi152 (mon.0) 385 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-01-24T02:55:11.882 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:11 smithi152 bash[16344]: audit 2024-01-24T02:55:10.830593+0000 mon.smithi152 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.152:0/395338804' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:55:11.882 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:11 smithi152 bash[16344]: audit 2024-01-24T02:55:11.259958+0000 mon.smithi152 (mon.0) 387 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:11.882 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:11 smithi152 bash[16344]: audit 2024-01-24T02:55:11.261481+0000 mon.smithi152 (mon.0) 388 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-01-24T02:55:11.882 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:11 smithi152 bash[16344]: audit 2024-01-24T02:55:11.262956+0000 mon.smithi152 (mon.0) 389 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:11.883 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":21,"num_osds":8,"num_up_osds":3,"osd_up_since":1706064909,"num_in_osds":8,"osd_in_since":1706064879,"num_remapped_pgs":0} 2024-01-24T02:55:11.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:11 smithi195 bash[19846]: audit 2024-01-24T02:55:10.597153+0000 mon.smithi152 (mon.0) 378 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-01-24T02:55:11.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:11 smithi195 bash[19846]: cluster 2024-01-24T02:55:10.597284+0000 mon.smithi152 (mon.0) 379 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-01-24T02:55:11.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:11 smithi195 bash[19846]: audit 2024-01-24T02:55:10.597485+0000 mon.smithi152 (mon.0) 380 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:11.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:11 smithi195 bash[19846]: audit 2024-01-24T02:55:10.597874+0000 mon.smithi152 (mon.0) 381 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:11.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:11 smithi195 bash[19846]: audit 2024-01-24T02:55:10.598141+0000 mon.smithi152 (mon.0) 382 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:11.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:11 smithi195 bash[19846]: audit 2024-01-24T02:55:10.598685+0000 mon.smithi152 (mon.0) 383 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:11.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:11 smithi195 bash[19846]: audit 2024-01-24T02:55:10.598896+0000 mon.smithi152 (mon.0) 384 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:11.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:11 smithi195 bash[19846]: audit 2024-01-24T02:55:10.599924+0000 mon.smithi152 (mon.0) 385 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-01-24T02:55:11.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:11 smithi195 bash[19846]: audit 2024-01-24T02:55:10.830593+0000 mon.smithi152 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.152:0/395338804' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:55:11.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:11 smithi195 bash[19846]: audit 2024-01-24T02:55:11.259958+0000 mon.smithi152 (mon.0) 387 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:11.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:11 smithi195 bash[19846]: audit 2024-01-24T02:55:11.261481+0000 mon.smithi152 (mon.0) 388 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-01-24T02:55:11.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:11 smithi195 bash[19846]: audit 2024-01-24T02:55:11.262956+0000 mon.smithi152 (mon.0) 389 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:12.884 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd stat -f json 2024-01-24T02:55:12.887 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:12 smithi152 bash[16344]: cluster 2024-01-24T02:55:11.072796+0000 mgr.smithi152.jkoscf (mgr.14182) 62 : cluster [DBG] pgmap v56: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-01-24T02:55:12.887 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:12 smithi152 bash[16344]: cephadm 2024-01-24T02:55:11.264307+0000 mgr.smithi152.jkoscf (mgr.14182) 63 : cephadm [INF] Deploying daemon osd.7 on smithi152 2024-01-24T02:55:12.887 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:12 smithi152 bash[16344]: audit 2024-01-24T02:55:11.601178+0000 mon.smithi152 (mon.0) 390 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-01-24T02:55:12.887 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:12 smithi152 bash[16344]: cluster 2024-01-24T02:55:11.601298+0000 mon.smithi152 (mon.0) 391 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-01-24T02:55:12.888 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:12 smithi152 bash[16344]: audit 2024-01-24T02:55:11.601949+0000 mon.smithi152 (mon.0) 392 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:12.888 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:12 smithi152 bash[16344]: audit 2024-01-24T02:55:11.602217+0000 mon.smithi152 (mon.0) 393 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:12.888 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:12 smithi152 bash[16344]: audit 2024-01-24T02:55:11.602464+0000 mon.smithi152 (mon.0) 394 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:12.888 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:12 smithi152 bash[16344]: audit 2024-01-24T02:55:11.602681+0000 mon.smithi152 (mon.0) 395 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:12.888 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:12 smithi152 bash[16344]: audit 2024-01-24T02:55:11.602949+0000 mon.smithi152 (mon.0) 396 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:12.888 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:12 smithi152 bash[16344]: audit 2024-01-24T02:55:12.019144+0000 mon.smithi195 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/637602785,v1:172.21.15.195:6817/637602785]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-01-24T02:55:12.888 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:12 smithi152 bash[16344]: audit 2024-01-24T02:55:12.019618+0000 mon.smithi152 (mon.0) 397 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-01-24T02:55:12.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:12 smithi195 bash[19846]: cluster 2024-01-24T02:55:11.072796+0000 mgr.smithi152.jkoscf (mgr.14182) 62 : cluster [DBG] pgmap v56: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-01-24T02:55:12.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:12 smithi195 bash[19846]: cephadm 2024-01-24T02:55:11.264307+0000 mgr.smithi152.jkoscf (mgr.14182) 63 : cephadm [INF] Deploying daemon osd.7 on smithi152 2024-01-24T02:55:12.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:12 smithi195 bash[19846]: audit 2024-01-24T02:55:11.601178+0000 mon.smithi152 (mon.0) 390 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-01-24T02:55:12.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:12 smithi195 bash[19846]: cluster 2024-01-24T02:55:11.601298+0000 mon.smithi152 (mon.0) 391 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-01-24T02:55:12.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:12 smithi195 bash[19846]: audit 2024-01-24T02:55:11.601949+0000 mon.smithi152 (mon.0) 392 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:12.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:12 smithi195 bash[19846]: audit 2024-01-24T02:55:11.602217+0000 mon.smithi152 (mon.0) 393 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:12 smithi195 bash[19846]: audit 2024-01-24T02:55:11.602464+0000 mon.smithi152 (mon.0) 394 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:12 smithi195 bash[19846]: audit 2024-01-24T02:55:11.602681+0000 mon.smithi152 (mon.0) 395 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:12 smithi195 bash[19846]: audit 2024-01-24T02:55:11.602949+0000 mon.smithi152 (mon.0) 396 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:12 smithi195 bash[19846]: audit 2024-01-24T02:55:12.019144+0000 mon.smithi195 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/637602785,v1:172.21.15.195:6817/637602785]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-01-24T02:55:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:12 smithi195 bash[19846]: audit 2024-01-24T02:55:12.019618+0000 mon.smithi152 (mon.0) 397 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-01-24T02:55:13.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:13 smithi195 bash[19846]: audit 2024-01-24T02:55:12.619228+0000 mon.smithi152 (mon.0) 398 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-01-24T02:55:13.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:13 smithi195 bash[19846]: cluster 2024-01-24T02:55:12.619409+0000 mon.smithi152 (mon.0) 399 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-01-24T02:55:13.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:13 smithi195 bash[19846]: audit 2024-01-24T02:55:12.619691+0000 mon.smithi152 (mon.0) 400 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:13.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:13 smithi195 bash[19846]: audit 2024-01-24T02:55:12.620522+0000 mon.smithi152 (mon.0) 401 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:13.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:13 smithi195 bash[19846]: audit 2024-01-24T02:55:12.620808+0000 mon.smithi195 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/637602785,v1:172.21.15.195:6817/637602785]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:13.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:13 smithi195 bash[19846]: audit 2024-01-24T02:55:12.620981+0000 mon.smithi152 (mon.0) 402 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:13.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:13 smithi195 bash[19846]: audit 2024-01-24T02:55:12.621625+0000 mon.smithi152 (mon.0) 403 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:13.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:13 smithi195 bash[19846]: audit 2024-01-24T02:55:12.622233+0000 mon.smithi152 (mon.0) 404 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:13.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:13 smithi195 bash[19846]: audit 2024-01-24T02:55:12.623006+0000 mon.smithi152 (mon.0) 405 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:14.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:13 smithi152 bash[16344]: audit 2024-01-24T02:55:12.619228+0000 mon.smithi152 (mon.0) 398 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-01-24T02:55:14.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:13 smithi152 bash[16344]: cluster 2024-01-24T02:55:12.619409+0000 mon.smithi152 (mon.0) 399 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-01-24T02:55:14.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:13 smithi152 bash[16344]: audit 2024-01-24T02:55:12.619691+0000 mon.smithi152 (mon.0) 400 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:14.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:13 smithi152 bash[16344]: audit 2024-01-24T02:55:12.620522+0000 mon.smithi152 (mon.0) 401 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:14.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:13 smithi152 bash[16344]: audit 2024-01-24T02:55:12.620808+0000 mon.smithi195 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/637602785,v1:172.21.15.195:6817/637602785]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:14.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:13 smithi152 bash[16344]: audit 2024-01-24T02:55:12.620981+0000 mon.smithi152 (mon.0) 402 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:14.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:13 smithi152 bash[16344]: audit 2024-01-24T02:55:12.621625+0000 mon.smithi152 (mon.0) 403 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:14.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:13 smithi152 bash[16344]: audit 2024-01-24T02:55:12.622233+0000 mon.smithi152 (mon.0) 404 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:14.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:13 smithi152 bash[16344]: audit 2024-01-24T02:55:12.623006+0000 mon.smithi152 (mon.0) 405 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:14.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:14 smithi195 bash[19846]: cluster 2024-01-24T02:55:13.073223+0000 mgr.smithi152.jkoscf (mgr.14182) 64 : cluster [DBG] pgmap v59: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-01-24T02:55:14.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:14 smithi195 bash[19846]: audit 2024-01-24T02:55:13.626204+0000 mon.smithi152 (mon.0) 406 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-01-24T02:55:14.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:14 smithi195 bash[19846]: cluster 2024-01-24T02:55:13.626425+0000 mon.smithi152 (mon.0) 407 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-01-24T02:55:14.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:14 smithi195 bash[19846]: audit 2024-01-24T02:55:13.626979+0000 mon.smithi152 (mon.0) 408 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:14.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:14 smithi195 bash[19846]: audit 2024-01-24T02:55:13.627808+0000 mon.smithi152 (mon.0) 409 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:14.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:14 smithi195 bash[19846]: audit 2024-01-24T02:55:13.628176+0000 mon.smithi152 (mon.0) 410 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:14.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:14 smithi195 bash[19846]: audit 2024-01-24T02:55:13.628495+0000 mon.smithi152 (mon.0) 411 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:14.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:14 smithi195 bash[19846]: audit 2024-01-24T02:55:13.628903+0000 mon.smithi152 (mon.0) 412 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:14.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:14 smithi195 bash[19846]: audit 2024-01-24T02:55:13.632664+0000 mon.smithi152 (mon.0) 413 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:14.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:14 smithi195 bash[19846]: audit 2024-01-24T02:55:13.757617+0000 mon.smithi152 (mon.0) 414 : audit [INF] from='osd.3 [v2:172.21.15.152:6810/3162430233,v1:172.21.15.152:6811/3162430233]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-01-24T02:55:15.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:14 smithi152 bash[16344]: cluster 2024-01-24T02:55:13.073223+0000 mgr.smithi152.jkoscf (mgr.14182) 64 : cluster [DBG] pgmap v59: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-01-24T02:55:15.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:14 smithi152 bash[16344]: audit 2024-01-24T02:55:13.626204+0000 mon.smithi152 (mon.0) 406 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-01-24T02:55:15.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:14 smithi152 bash[16344]: cluster 2024-01-24T02:55:13.626425+0000 mon.smithi152 (mon.0) 407 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-01-24T02:55:15.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:14 smithi152 bash[16344]: audit 2024-01-24T02:55:13.626979+0000 mon.smithi152 (mon.0) 408 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:15.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:14 smithi152 bash[16344]: audit 2024-01-24T02:55:13.627808+0000 mon.smithi152 (mon.0) 409 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:15.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:14 smithi152 bash[16344]: audit 2024-01-24T02:55:13.628176+0000 mon.smithi152 (mon.0) 410 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:15.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:14 smithi152 bash[16344]: audit 2024-01-24T02:55:13.628495+0000 mon.smithi152 (mon.0) 411 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:15.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:14 smithi152 bash[16344]: audit 2024-01-24T02:55:13.628903+0000 mon.smithi152 (mon.0) 412 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:15.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:14 smithi152 bash[16344]: audit 2024-01-24T02:55:13.632664+0000 mon.smithi152 (mon.0) 413 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:15.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:14 smithi152 bash[16344]: audit 2024-01-24T02:55:13.757617+0000 mon.smithi152 (mon.0) 414 : audit [INF] from='osd.3 [v2:172.21.15.152:6810/3162430233,v1:172.21.15.152:6811/3162430233]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-01-24T02:55:15.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:15 smithi152 bash[16344]: cluster 2024-01-24T02:55:13.021267+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:15.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:15 smithi152 bash[16344]: cluster 2024-01-24T02:55:13.021353+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:15.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:15 smithi152 bash[16344]: cluster 2024-01-24T02:55:14.629677+0000 mon.smithi152 (mon.0) 415 : cluster [INF] osd.4 [v2:172.21.15.195:6816/637602785,v1:172.21.15.195:6817/637602785] boot 2024-01-24T02:55:15.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:15 smithi152 bash[16344]: audit 2024-01-24T02:55:14.629819+0000 mon.smithi152 (mon.0) 416 : audit [INF] from='osd.3 [v2:172.21.15.152:6810/3162430233,v1:172.21.15.152:6811/3162430233]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-01-24T02:55:15.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:15 smithi152 bash[16344]: cluster 2024-01-24T02:55:14.629977+0000 mon.smithi152 (mon.0) 417 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-01-24T02:55:15.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:15 smithi152 bash[16344]: audit 2024-01-24T02:55:14.630661+0000 mon.smithi152 (mon.0) 418 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:15.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:15 smithi152 bash[16344]: audit 2024-01-24T02:55:14.631080+0000 mon.smithi152 (mon.0) 419 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:15.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:15 smithi152 bash[16344]: audit 2024-01-24T02:55:14.631410+0000 mon.smithi152 (mon.0) 420 : audit [INF] from='osd.3 [v2:172.21.15.152:6810/3162430233,v1:172.21.15.152:6811/3162430233]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-01-24T02:55:15.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:15 smithi152 bash[16344]: audit 2024-01-24T02:55:14.631782+0000 mon.smithi152 (mon.0) 421 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:15.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:15 smithi152 bash[16344]: audit 2024-01-24T02:55:14.636003+0000 mon.smithi152 (mon.0) 422 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:15.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:15 smithi152 bash[16344]: audit 2024-01-24T02:55:14.636371+0000 mon.smithi152 (mon.0) 423 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:15.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:15 smithi152 bash[16344]: cluster 2024-01-24T02:55:15.073787+0000 mgr.smithi152.jkoscf (mgr.14182) 65 : cluster [DBG] pgmap v62: 1 pgs: 1 unknown; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-01-24T02:55:15.969 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:15 smithi195 bash[19846]: cluster 2024-01-24T02:55:13.021267+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:15.970 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:15 smithi195 bash[19846]: cluster 2024-01-24T02:55:13.021353+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:15.970 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:15 smithi195 bash[19846]: cluster 2024-01-24T02:55:14.629677+0000 mon.smithi152 (mon.0) 415 : cluster [INF] osd.4 [v2:172.21.15.195:6816/637602785,v1:172.21.15.195:6817/637602785] boot 2024-01-24T02:55:15.970 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:15 smithi195 bash[19846]: audit 2024-01-24T02:55:14.629819+0000 mon.smithi152 (mon.0) 416 : audit [INF] from='osd.3 [v2:172.21.15.152:6810/3162430233,v1:172.21.15.152:6811/3162430233]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-01-24T02:55:15.970 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:15 smithi195 bash[19846]: cluster 2024-01-24T02:55:14.629977+0000 mon.smithi152 (mon.0) 417 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-01-24T02:55:15.970 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:15 smithi195 bash[19846]: audit 2024-01-24T02:55:14.630661+0000 mon.smithi152 (mon.0) 418 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:15.970 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:15 smithi195 bash[19846]: audit 2024-01-24T02:55:14.631080+0000 mon.smithi152 (mon.0) 419 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-24T02:55:15.970 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:15 smithi195 bash[19846]: audit 2024-01-24T02:55:14.631410+0000 mon.smithi152 (mon.0) 420 : audit [INF] from='osd.3 [v2:172.21.15.152:6810/3162430233,v1:172.21.15.152:6811/3162430233]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-01-24T02:55:15.970 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:15 smithi195 bash[19846]: audit 2024-01-24T02:55:14.631782+0000 mon.smithi152 (mon.0) 421 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:15.970 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:15 smithi195 bash[19846]: audit 2024-01-24T02:55:14.636003+0000 mon.smithi152 (mon.0) 422 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:15.970 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:15 smithi195 bash[19846]: audit 2024-01-24T02:55:14.636371+0000 mon.smithi152 (mon.0) 423 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:15.970 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:15 smithi195 bash[19846]: cluster 2024-01-24T02:55:15.073787+0000 mgr.smithi152.jkoscf (mgr.14182) 65 : cluster [DBG] pgmap v62: 1 pgs: 1 unknown; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-01-24T02:55:16.703 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:16 smithi152 bash[16344]: audit 2024-01-24T02:55:15.635303+0000 mon.smithi152 (mon.0) 424 : audit [INF] from='osd.3 [v2:172.21.15.152:6810/3162430233,v1:172.21.15.152:6811/3162430233]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-01-24T02:55:16.703 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:16 smithi152 bash[16344]: cluster 2024-01-24T02:55:15.635426+0000 mon.smithi152 (mon.0) 425 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-01-24T02:55:16.703 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:16 smithi152 bash[16344]: audit 2024-01-24T02:55:15.635698+0000 mon.smithi152 (mon.0) 426 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:16.703 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:16 smithi152 bash[16344]: audit 2024-01-24T02:55:15.636670+0000 mon.smithi152 (mon.0) 427 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:16.703 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:16 smithi152 bash[16344]: audit 2024-01-24T02:55:15.637550+0000 mon.smithi152 (mon.0) 428 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:16.703 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:16 smithi152 bash[16344]: audit 2024-01-24T02:55:15.642705+0000 mon.smithi152 (mon.0) 429 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:16.703 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:16 smithi152 bash[16344]: audit 2024-01-24T02:55:15.643335+0000 mon.smithi152 (mon.0) 430 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:16.703 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:16 smithi152 bash[16344]: audit 2024-01-24T02:55:15.974747+0000 mon.smithi195 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/1260107478,v1:172.21.15.195:6825/1260107478]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-01-24T02:55:16.703 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:16 smithi152 bash[16344]: audit 2024-01-24T02:55:15.975232+0000 mon.smithi152 (mon.0) 431 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-01-24T02:55:16.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:16 smithi195 bash[19846]: audit 2024-01-24T02:55:15.635303+0000 mon.smithi152 (mon.0) 424 : audit [INF] from='osd.3 [v2:172.21.15.152:6810/3162430233,v1:172.21.15.152:6811/3162430233]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-01-24T02:55:16.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:16 smithi195 bash[19846]: cluster 2024-01-24T02:55:15.635426+0000 mon.smithi152 (mon.0) 425 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-01-24T02:55:16.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:16 smithi195 bash[19846]: audit 2024-01-24T02:55:15.635698+0000 mon.smithi152 (mon.0) 426 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:16.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:16 smithi195 bash[19846]: audit 2024-01-24T02:55:15.636670+0000 mon.smithi152 (mon.0) 427 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:16.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:16 smithi195 bash[19846]: audit 2024-01-24T02:55:15.637550+0000 mon.smithi152 (mon.0) 428 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:16.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:16 smithi195 bash[19846]: audit 2024-01-24T02:55:15.642705+0000 mon.smithi152 (mon.0) 429 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:16.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:16 smithi195 bash[19846]: audit 2024-01-24T02:55:15.643335+0000 mon.smithi152 (mon.0) 430 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:16.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:16 smithi195 bash[19846]: audit 2024-01-24T02:55:15.974747+0000 mon.smithi195 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/1260107478,v1:172.21.15.195:6825/1260107478]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-01-24T02:55:16.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:16 smithi195 bash[19846]: audit 2024-01-24T02:55:15.975232+0000 mon.smithi152 (mon.0) 431 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-01-24T02:55:17.961 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: cluster 2024-01-24T02:55:14.760939+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:17.961 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: cluster 2024-01-24T02:55:14.761032+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:17.961 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: cluster 2024-01-24T02:55:16.638636+0000 mon.smithi152 (mon.0) 432 : cluster [INF] osd.3 [v2:172.21.15.152:6810/3162430233,v1:172.21.15.152:6811/3162430233] boot 2024-01-24T02:55:17.961 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: audit 2024-01-24T02:55:16.638819+0000 mon.smithi152 (mon.0) 433 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-01-24T02:55:17.962 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: cluster 2024-01-24T02:55:16.639038+0000 mon.smithi152 (mon.0) 434 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-01-24T02:55:17.962 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: audit 2024-01-24T02:55:16.640153+0000 mon.smithi195 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/1260107478,v1:172.21.15.195:6825/1260107478]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:17.962 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: audit 2024-01-24T02:55:16.640277+0000 mon.smithi152 (mon.0) 435 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:17.962 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: audit 2024-01-24T02:55:16.640938+0000 mon.smithi152 (mon.0) 436 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:17.962 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: audit 2024-01-24T02:55:16.645679+0000 mon.smithi152 (mon.0) 437 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:17.962 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: audit 2024-01-24T02:55:16.645894+0000 mon.smithi152 (mon.0) 438 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:17.962 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: audit 2024-01-24T02:55:16.646078+0000 mon.smithi152 (mon.0) 439 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:17.962 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: cluster 2024-01-24T02:55:17.074393+0000 mgr.smithi152.jkoscf (mgr.14182) 66 : cluster [DBG] pgmap v65: 1 pgs: 1 active+clean; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-01-24T02:55:17.962 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: audit 2024-01-24T02:55:17.637593+0000 mon.smithi152 (mon.0) 440 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-01-24T02:55:17.962 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: cluster 2024-01-24T02:55:17.637762+0000 mon.smithi152 (mon.0) 441 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-01-24T02:55:17.962 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: audit 2024-01-24T02:55:17.638011+0000 mon.smithi152 (mon.0) 442 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:17.962 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: audit 2024-01-24T02:55:17.638636+0000 mon.smithi152 (mon.0) 443 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:17.962 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:17 smithi152 bash[16344]: audit 2024-01-24T02:55:17.639091+0000 mon.smithi152 (mon.0) 444 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:17.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: cluster 2024-01-24T02:55:14.760939+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:17.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: cluster 2024-01-24T02:55:14.761032+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:17.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: cluster 2024-01-24T02:55:16.638636+0000 mon.smithi152 (mon.0) 432 : cluster [INF] osd.3 [v2:172.21.15.152:6810/3162430233,v1:172.21.15.152:6811/3162430233] boot 2024-01-24T02:55:17.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: audit 2024-01-24T02:55:16.638819+0000 mon.smithi152 (mon.0) 433 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-01-24T02:55:17.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: cluster 2024-01-24T02:55:16.639038+0000 mon.smithi152 (mon.0) 434 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-01-24T02:55:17.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: audit 2024-01-24T02:55:16.640153+0000 mon.smithi195 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/1260107478,v1:172.21.15.195:6825/1260107478]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:17.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: audit 2024-01-24T02:55:16.640277+0000 mon.smithi152 (mon.0) 435 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-24T02:55:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: audit 2024-01-24T02:55:16.640938+0000 mon.smithi152 (mon.0) 436 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: audit 2024-01-24T02:55:16.645679+0000 mon.smithi152 (mon.0) 437 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]: dispatch 2024-01-24T02:55:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: audit 2024-01-24T02:55:16.645894+0000 mon.smithi152 (mon.0) 438 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: audit 2024-01-24T02:55:16.646078+0000 mon.smithi152 (mon.0) 439 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: cluster 2024-01-24T02:55:17.074393+0000 mgr.smithi152.jkoscf (mgr.14182) 66 : cluster [DBG] pgmap v65: 1 pgs: 1 active+clean; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-01-24T02:55:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: audit 2024-01-24T02:55:17.637593+0000 mon.smithi152 (mon.0) 440 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-01-24T02:55:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: cluster 2024-01-24T02:55:17.637762+0000 mon.smithi152 (mon.0) 441 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-01-24T02:55:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: audit 2024-01-24T02:55:17.638011+0000 mon.smithi152 (mon.0) 442 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: audit 2024-01-24T02:55:17.638636+0000 mon.smithi152 (mon.0) 443 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:17 smithi195 bash[19846]: audit 2024-01-24T02:55:17.639091+0000 mon.smithi152 (mon.0) 444 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:18.172 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:55:18.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:18 smithi195 bash[19846]: audit 2024-01-24T02:55:17.649032+0000 mon.smithi152 (mon.0) 445 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:18.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:18 smithi195 bash[19846]: audit 2024-01-24T02:55:18.000603+0000 mon.smithi152 (mon.0) 446 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:18.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:18 smithi195 bash[19846]: audit 2024-01-24T02:55:18.171808+0000 mon.smithi152 (mon.0) 447 : audit [DBG] from='client.? 172.21.15.152:0/2043900853' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:55:18.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:18 smithi195 bash[19846]: cluster 2024-01-24T02:55:18.641061+0000 mon.smithi152 (mon.0) 448 : cluster [INF] osd.6 [v2:172.21.15.195:6824/1260107478,v1:172.21.15.195:6825/1260107478] boot 2024-01-24T02:55:18.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:18 smithi195 bash[19846]: cluster 2024-01-24T02:55:18.641145+0000 mon.smithi152 (mon.0) 449 : cluster [DBG] osdmap e29: 8 total, 6 up, 8 in 2024-01-24T02:55:18.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:18 smithi195 bash[19846]: audit 2024-01-24T02:55:18.641358+0000 mon.smithi152 (mon.0) 450 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:18.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:18 smithi195 bash[19846]: audit 2024-01-24T02:55:18.641747+0000 mon.smithi152 (mon.0) 451 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:18.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:18 smithi195 bash[19846]: audit 2024-01-24T02:55:18.641950+0000 mon.smithi152 (mon.0) 452 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:19.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:18 smithi152 bash[16344]: audit 2024-01-24T02:55:17.649032+0000 mon.smithi152 (mon.0) 445 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:19.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:18 smithi152 bash[16344]: audit 2024-01-24T02:55:18.000603+0000 mon.smithi152 (mon.0) 446 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:19.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:18 smithi152 bash[16344]: audit 2024-01-24T02:55:18.171808+0000 mon.smithi152 (mon.0) 447 : audit [DBG] from='client.? 172.21.15.152:0/2043900853' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:55:19.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:18 smithi152 bash[16344]: cluster 2024-01-24T02:55:18.641061+0000 mon.smithi152 (mon.0) 448 : cluster [INF] osd.6 [v2:172.21.15.195:6824/1260107478,v1:172.21.15.195:6825/1260107478] boot 2024-01-24T02:55:19.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:18 smithi152 bash[16344]: cluster 2024-01-24T02:55:18.641145+0000 mon.smithi152 (mon.0) 449 : cluster [DBG] osdmap e29: 8 total, 6 up, 8 in 2024-01-24T02:55:19.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:18 smithi152 bash[16344]: audit 2024-01-24T02:55:18.641358+0000 mon.smithi152 (mon.0) 450 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:19.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:18 smithi152 bash[16344]: audit 2024-01-24T02:55:18.641747+0000 mon.smithi152 (mon.0) 451 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-24T02:55:19.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:18 smithi152 bash[16344]: audit 2024-01-24T02:55:18.641950+0000 mon.smithi152 (mon.0) 452 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:19.092 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":28,"num_osds":8,"num_up_osds":5,"osd_up_since":1706064916,"num_in_osds":8,"osd_in_since":1706064879,"num_remapped_pgs":0} 2024-01-24T02:55:19.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:19 smithi195 bash[19846]: cluster 2024-01-24T02:55:17.015829+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:19.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:19 smithi195 bash[19846]: cluster 2024-01-24T02:55:17.015923+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:19.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:19 smithi195 bash[19846]: cluster 2024-01-24T02:55:19.074862+0000 mgr.smithi152.jkoscf (mgr.14182) 67 : cluster [DBG] pgmap v68: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-01-24T02:55:19.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:19 smithi195 bash[19846]: audit 2024-01-24T02:55:19.195925+0000 mon.smithi152 (mon.0) 453 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:20.050 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:19 smithi152 bash[16344]: cluster 2024-01-24T02:55:17.015829+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:20.050 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:19 smithi152 bash[16344]: cluster 2024-01-24T02:55:17.015923+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:20.050 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:19 smithi152 bash[16344]: cluster 2024-01-24T02:55:19.074862+0000 mgr.smithi152.jkoscf (mgr.14182) 67 : cluster [DBG] pgmap v68: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-01-24T02:55:20.050 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:19 smithi152 bash[16344]: audit 2024-01-24T02:55:19.195925+0000 mon.smithi152 (mon.0) 453 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:20.094 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd stat -f json 2024-01-24T02:55:20.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:20 smithi195 bash[19846]: cluster 2024-01-24T02:55:19.657323+0000 mon.smithi152 (mon.0) 454 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-01-24T02:55:20.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:20 smithi195 bash[19846]: audit 2024-01-24T02:55:19.657634+0000 mon.smithi152 (mon.0) 455 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:20.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:20 smithi195 bash[19846]: audit 2024-01-24T02:55:19.658391+0000 mon.smithi152 (mon.0) 456 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:20.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:20 smithi195 bash[19846]: audit 2024-01-24T02:55:20.304532+0000 mon.smithi152 (mon.0) 457 : audit [INF] from='osd.5 [v2:172.21.15.152:6818/2566076046,v1:172.21.15.152:6819/2566076046]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-01-24T02:55:21.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:20 smithi152 bash[16344]: cluster 2024-01-24T02:55:19.657323+0000 mon.smithi152 (mon.0) 454 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-01-24T02:55:21.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:20 smithi152 bash[16344]: audit 2024-01-24T02:55:19.657634+0000 mon.smithi152 (mon.0) 455 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:21.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:20 smithi152 bash[16344]: audit 2024-01-24T02:55:19.658391+0000 mon.smithi152 (mon.0) 456 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:21.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:20 smithi152 bash[16344]: audit 2024-01-24T02:55:20.304532+0000 mon.smithi152 (mon.0) 457 : audit [INF] from='osd.5 [v2:172.21.15.152:6818/2566076046,v1:172.21.15.152:6819/2566076046]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-01-24T02:55:21.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:21 smithi195 bash[19846]: audit 2024-01-24T02:55:20.660548+0000 mon.smithi152 (mon.0) 458 : audit [INF] from='osd.5 [v2:172.21.15.152:6818/2566076046,v1:172.21.15.152:6819/2566076046]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-01-24T02:55:21.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:21 smithi195 bash[19846]: cluster 2024-01-24T02:55:20.660696+0000 mon.smithi152 (mon.0) 459 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-01-24T02:55:21.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:21 smithi195 bash[19846]: audit 2024-01-24T02:55:20.661425+0000 mon.smithi152 (mon.0) 460 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:21.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:21 smithi195 bash[19846]: audit 2024-01-24T02:55:20.661816+0000 mon.smithi152 (mon.0) 461 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:21.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:21 smithi195 bash[19846]: audit 2024-01-24T02:55:20.662109+0000 mon.smithi152 (mon.0) 462 : audit [INF] from='osd.5 [v2:172.21.15.152:6818/2566076046,v1:172.21.15.152:6819/2566076046]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-01-24T02:55:21.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:21 smithi195 bash[19846]: cluster 2024-01-24T02:55:21.075529+0000 mgr.smithi152.jkoscf (mgr.14182) 68 : cluster [DBG] pgmap v71: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-01-24T02:55:21.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:21 smithi195 bash[19846]: audit 2024-01-24T02:55:21.660931+0000 mon.smithi152 (mon.0) 463 : audit [INF] from='osd.5 [v2:172.21.15.152:6818/2566076046,v1:172.21.15.152:6819/2566076046]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-01-24T02:55:21.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:21 smithi195 bash[19846]: cluster 2024-01-24T02:55:21.661023+0000 mon.smithi152 (mon.0) 464 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-01-24T02:55:21.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:21 smithi195 bash[19846]: audit 2024-01-24T02:55:21.661199+0000 mon.smithi152 (mon.0) 465 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:21.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:21 smithi195 bash[19846]: audit 2024-01-24T02:55:21.661485+0000 mon.smithi152 (mon.0) 466 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:22.031 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:21 smithi152 bash[16344]: audit 2024-01-24T02:55:20.660548+0000 mon.smithi152 (mon.0) 458 : audit [INF] from='osd.5 [v2:172.21.15.152:6818/2566076046,v1:172.21.15.152:6819/2566076046]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-01-24T02:55:22.031 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:21 smithi152 bash[16344]: cluster 2024-01-24T02:55:20.660696+0000 mon.smithi152 (mon.0) 459 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-01-24T02:55:22.031 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:21 smithi152 bash[16344]: audit 2024-01-24T02:55:20.661425+0000 mon.smithi152 (mon.0) 460 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:22.031 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:21 smithi152 bash[16344]: audit 2024-01-24T02:55:20.661816+0000 mon.smithi152 (mon.0) 461 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:22.031 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:21 smithi152 bash[16344]: audit 2024-01-24T02:55:20.662109+0000 mon.smithi152 (mon.0) 462 : audit [INF] from='osd.5 [v2:172.21.15.152:6818/2566076046,v1:172.21.15.152:6819/2566076046]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-01-24T02:55:22.031 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:21 smithi152 bash[16344]: cluster 2024-01-24T02:55:21.075529+0000 mgr.smithi152.jkoscf (mgr.14182) 68 : cluster [DBG] pgmap v71: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-01-24T02:55:22.031 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:21 smithi152 bash[16344]: audit 2024-01-24T02:55:21.660931+0000 mon.smithi152 (mon.0) 463 : audit [INF] from='osd.5 [v2:172.21.15.152:6818/2566076046,v1:172.21.15.152:6819/2566076046]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-01-24T02:55:22.032 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:21 smithi152 bash[16344]: cluster 2024-01-24T02:55:21.661023+0000 mon.smithi152 (mon.0) 464 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-01-24T02:55:22.032 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:21 smithi152 bash[16344]: audit 2024-01-24T02:55:21.661199+0000 mon.smithi152 (mon.0) 465 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:22.032 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:21 smithi152 bash[16344]: audit 2024-01-24T02:55:21.661485+0000 mon.smithi152 (mon.0) 466 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:22.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:22 smithi195 bash[19846]: audit 2024-01-24T02:55:21.668968+0000 mon.smithi152 (mon.0) 467 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:23.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:22 smithi152 bash[16344]: audit 2024-01-24T02:55:21.668968+0000 mon.smithi152 (mon.0) 467 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:23.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:23 smithi152 bash[16344]: cluster 2024-01-24T02:55:21.302483+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:23.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:23 smithi152 bash[16344]: cluster 2024-01-24T02:55:21.302569+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:23.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:23 smithi152 bash[16344]: audit 2024-01-24T02:55:22.666530+0000 mon.smithi152 (mon.0) 468 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:23.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:23 smithi152 bash[16344]: cluster 2024-01-24T02:55:22.678770+0000 mon.smithi152 (mon.0) 469 : cluster [INF] osd.5 [v2:172.21.15.152:6818/2566076046,v1:172.21.15.152:6819/2566076046] boot 2024-01-24T02:55:23.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:23 smithi152 bash[16344]: cluster 2024-01-24T02:55:22.678811+0000 mon.smithi152 (mon.0) 470 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-01-24T02:55:23.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:23 smithi152 bash[16344]: audit 2024-01-24T02:55:22.679171+0000 mon.smithi152 (mon.0) 471 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:23.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:23 smithi152 bash[16344]: audit 2024-01-24T02:55:22.679632+0000 mon.smithi152 (mon.0) 472 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:23.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:23 smithi152 bash[16344]: cluster 2024-01-24T02:55:23.076075+0000 mgr.smithi152.jkoscf (mgr.14182) 69 : cluster [DBG] pgmap v74: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-01-24T02:55:23.982 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:55:23.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:23 smithi195 bash[19846]: cluster 2024-01-24T02:55:21.302483+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:23.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:23 smithi195 bash[19846]: cluster 2024-01-24T02:55:21.302569+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:23.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:23 smithi195 bash[19846]: audit 2024-01-24T02:55:22.666530+0000 mon.smithi152 (mon.0) 468 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:23.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:23 smithi195 bash[19846]: cluster 2024-01-24T02:55:22.678770+0000 mon.smithi152 (mon.0) 469 : cluster [INF] osd.5 [v2:172.21.15.152:6818/2566076046,v1:172.21.15.152:6819/2566076046] boot 2024-01-24T02:55:23.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:23 smithi195 bash[19846]: cluster 2024-01-24T02:55:22.678811+0000 mon.smithi152 (mon.0) 470 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-01-24T02:55:23.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:23 smithi195 bash[19846]: audit 2024-01-24T02:55:22.679171+0000 mon.smithi152 (mon.0) 471 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-24T02:55:23.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:23 smithi195 bash[19846]: audit 2024-01-24T02:55:22.679632+0000 mon.smithi152 (mon.0) 472 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:23.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:23 smithi195 bash[19846]: cluster 2024-01-24T02:55:23.076075+0000 mgr.smithi152.jkoscf (mgr.14182) 69 : cluster [DBG] pgmap v74: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-01-24T02:55:24.602 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":33,"num_osds":8,"num_up_osds":7,"osd_up_since":1706064922,"num_in_osds":8,"osd_in_since":1706064879,"num_remapped_pgs":0} 2024-01-24T02:55:24.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:24 smithi195 bash[19846]: audit 2024-01-24T02:55:23.982194+0000 mon.smithi152 (mon.0) 473 : audit [DBG] from='client.? 172.21.15.152:0/3271952413' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:55:24.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:24 smithi195 bash[19846]: cluster 2024-01-24T02:55:24.113869+0000 mon.smithi152 (mon.0) 474 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-01-24T02:55:24.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:24 smithi195 bash[19846]: audit 2024-01-24T02:55:24.114025+0000 mon.smithi152 (mon.0) 475 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:25.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:24 smithi152 bash[16344]: audit 2024-01-24T02:55:23.982194+0000 mon.smithi152 (mon.0) 473 : audit [DBG] from='client.? 172.21.15.152:0/3271952413' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:55:25.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:24 smithi152 bash[16344]: cluster 2024-01-24T02:55:24.113869+0000 mon.smithi152 (mon.0) 474 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-01-24T02:55:25.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:24 smithi152 bash[16344]: audit 2024-01-24T02:55:24.114025+0000 mon.smithi152 (mon.0) 475 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:25.604 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd stat -f json 2024-01-24T02:55:25.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:25 smithi195 bash[19846]: cluster 2024-01-24T02:55:25.076521+0000 mgr.smithi152.jkoscf (mgr.14182) 70 : cluster [DBG] pgmap v76: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-24T02:55:26.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:25 smithi152 bash[16344]: cluster 2024-01-24T02:55:25.076521+0000 mgr.smithi152.jkoscf (mgr.14182) 70 : cluster [DBG] pgmap v76: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-24T02:55:26.852 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:26 smithi152 bash[16344]: audit 2024-01-24T02:55:25.727781+0000 mon.smithi152 (mon.0) 476 : audit [INF] from='osd.7 [v2:172.21.15.152:6826/2151467856,v1:172.21.15.152:6827/2151467856]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-01-24T02:55:26.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:26 smithi195 bash[19846]: audit 2024-01-24T02:55:25.727781+0000 mon.smithi152 (mon.0) 476 : audit [INF] from='osd.7 [v2:172.21.15.152:6826/2151467856,v1:172.21.15.152:6827/2151467856]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-01-24T02:55:27.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:27 smithi195 bash[19846]: audit 2024-01-24T02:55:26.705291+0000 mon.smithi152 (mon.0) 477 : audit [INF] from='osd.7 [v2:172.21.15.152:6826/2151467856,v1:172.21.15.152:6827/2151467856]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-01-24T02:55:27.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:27 smithi195 bash[19846]: cluster 2024-01-24T02:55:26.705421+0000 mon.smithi152 (mon.0) 478 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-01-24T02:55:27.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:27 smithi195 bash[19846]: audit 2024-01-24T02:55:26.705737+0000 mon.smithi152 (mon.0) 479 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:27.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:27 smithi195 bash[19846]: audit 2024-01-24T02:55:26.706184+0000 mon.smithi152 (mon.0) 480 : audit [INF] from='osd.7 [v2:172.21.15.152:6826/2151467856,v1:172.21.15.152:6827/2151467856]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-01-24T02:55:27.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:27 smithi195 bash[19846]: cluster 2024-01-24T02:55:27.077093+0000 mgr.smithi152.jkoscf (mgr.14182) 71 : cluster [DBG] pgmap v78: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-24T02:55:28.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:27 smithi152 bash[16344]: audit 2024-01-24T02:55:26.705291+0000 mon.smithi152 (mon.0) 477 : audit [INF] from='osd.7 [v2:172.21.15.152:6826/2151467856,v1:172.21.15.152:6827/2151467856]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-01-24T02:55:28.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:27 smithi152 bash[16344]: cluster 2024-01-24T02:55:26.705421+0000 mon.smithi152 (mon.0) 478 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-01-24T02:55:28.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:27 smithi152 bash[16344]: audit 2024-01-24T02:55:26.705737+0000 mon.smithi152 (mon.0) 479 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:28.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:27 smithi152 bash[16344]: audit 2024-01-24T02:55:26.706184+0000 mon.smithi152 (mon.0) 480 : audit [INF] from='osd.7 [v2:172.21.15.152:6826/2151467856,v1:172.21.15.152:6827/2151467856]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-01-24T02:55:28.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:27 smithi152 bash[16344]: cluster 2024-01-24T02:55:27.077093+0000 mgr.smithi152.jkoscf (mgr.14182) 71 : cluster [DBG] pgmap v78: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-24T02:55:28.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:28 smithi195 bash[19846]: audit 2024-01-24T02:55:27.706981+0000 mon.smithi152 (mon.0) 481 : audit [INF] from='osd.7 [v2:172.21.15.152:6826/2151467856,v1:172.21.15.152:6827/2151467856]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-01-24T02:55:28.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:28 smithi195 bash[19846]: cluster 2024-01-24T02:55:27.707104+0000 mon.smithi152 (mon.0) 482 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-01-24T02:55:28.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:28 smithi195 bash[19846]: audit 2024-01-24T02:55:27.707715+0000 mon.smithi152 (mon.0) 483 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:28.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:28 smithi195 bash[19846]: audit 2024-01-24T02:55:27.716624+0000 mon.smithi152 (mon.0) 484 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:28.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:28 smithi195 bash[19846]: cluster 2024-01-24T02:55:28.114540+0000 mon.smithi152 (mon.0) 485 : cluster [INF] osd.7 [v2:172.21.15.152:6826/2151467856,v1:172.21.15.152:6827/2151467856] boot 2024-01-24T02:55:28.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:28 smithi195 bash[19846]: cluster 2024-01-24T02:55:28.114669+0000 mon.smithi152 (mon.0) 486 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-01-24T02:55:28.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:28 smithi195 bash[19846]: audit 2024-01-24T02:55:28.115184+0000 mon.smithi152 (mon.0) 487 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:29.042 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:28 smithi152 bash[16344]: audit 2024-01-24T02:55:27.706981+0000 mon.smithi152 (mon.0) 481 : audit [INF] from='osd.7 [v2:172.21.15.152:6826/2151467856,v1:172.21.15.152:6827/2151467856]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-01-24T02:55:29.042 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:28 smithi152 bash[16344]: cluster 2024-01-24T02:55:27.707104+0000 mon.smithi152 (mon.0) 482 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-01-24T02:55:29.042 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:28 smithi152 bash[16344]: audit 2024-01-24T02:55:27.707715+0000 mon.smithi152 (mon.0) 483 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:29.043 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:28 smithi152 bash[16344]: audit 2024-01-24T02:55:27.716624+0000 mon.smithi152 (mon.0) 484 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:29.043 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:28 smithi152 bash[16344]: cluster 2024-01-24T02:55:28.114540+0000 mon.smithi152 (mon.0) 485 : cluster [INF] osd.7 [v2:172.21.15.152:6826/2151467856,v1:172.21.15.152:6827/2151467856] boot 2024-01-24T02:55:29.043 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:28 smithi152 bash[16344]: cluster 2024-01-24T02:55:28.114669+0000 mon.smithi152 (mon.0) 486 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-01-24T02:55:29.043 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:28 smithi152 bash[16344]: audit 2024-01-24T02:55:28.115184+0000 mon.smithi152 (mon.0) 487 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-24T02:55:29.578 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:55:29.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:29 smithi195 bash[19846]: cluster 2024-01-24T02:55:26.695444+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:29.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:29 smithi195 bash[19846]: cluster 2024-01-24T02:55:26.695551+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:29.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:29 smithi195 bash[19846]: cluster 2024-01-24T02:55:29.077752+0000 mgr.smithi152.jkoscf (mgr.14182) 72 : cluster [DBG] pgmap v81: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:29.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:29 smithi195 bash[19846]: cluster 2024-01-24T02:55:29.126119+0000 mon.smithi152 (mon.0) 488 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-01-24T02:55:29.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:29 smithi195 bash[19846]: audit 2024-01-24T02:55:29.577819+0000 mon.smithi152 (mon.0) 489 : audit [DBG] from='client.? 172.21.15.152:0/853438212' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:55:30.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:29 smithi152 bash[16344]: cluster 2024-01-24T02:55:26.695444+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-24T02:55:30.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:29 smithi152 bash[16344]: cluster 2024-01-24T02:55:26.695551+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-24T02:55:30.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:29 smithi152 bash[16344]: cluster 2024-01-24T02:55:29.077752+0000 mgr.smithi152.jkoscf (mgr.14182) 72 : cluster [DBG] pgmap v81: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:30.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:29 smithi152 bash[16344]: cluster 2024-01-24T02:55:29.126119+0000 mon.smithi152 (mon.0) 488 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-01-24T02:55:30.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:29 smithi152 bash[16344]: audit 2024-01-24T02:55:29.577819+0000 mon.smithi152 (mon.0) 489 : audit [DBG] from='client.? 172.21.15.152:0/853438212' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-24T02:55:30.459 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":38,"num_osds":8,"num_up_osds":8,"osd_up_since":1706064928,"num_in_osds":8,"osd_in_since":1706064879,"num_remapped_pgs":0} 2024-01-24T02:55:30.459 INFO:tasks.cephadm:Setting up client nodes... 2024-01-24T02:55:30.460 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-01-24T02:55:31.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:31 smithi195 bash[19846]: cluster 2024-01-24T02:55:30.130851+0000 mon.smithi152 (mon.0) 490 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-01-24T02:55:31.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:31 smithi195 bash[19846]: audit 2024-01-24T02:55:30.654843+0000 mon.smithi152 (mon.0) 491 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:31.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:31 smithi195 bash[19846]: audit 2024-01-24T02:55:30.656194+0000 mon.smithi152 (mon.0) 492 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-24T02:55:31.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:31 smithi195 bash[19846]: audit 2024-01-24T02:55:30.656971+0000 mon.smithi152 (mon.0) 493 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-24T02:55:31.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:31 smithi195 bash[19846]: audit 2024-01-24T02:55:30.657686+0000 mon.smithi152 (mon.0) 494 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:31.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:31 smithi152 bash[16344]: cluster 2024-01-24T02:55:30.130851+0000 mon.smithi152 (mon.0) 490 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-01-24T02:55:31.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:31 smithi152 bash[16344]: audit 2024-01-24T02:55:30.654843+0000 mon.smithi152 (mon.0) 491 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:31.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:31 smithi152 bash[16344]: audit 2024-01-24T02:55:30.656194+0000 mon.smithi152 (mon.0) 492 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-24T02:55:31.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:31 smithi152 bash[16344]: audit 2024-01-24T02:55:30.656971+0000 mon.smithi152 (mon.0) 493 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-24T02:55:31.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:31 smithi152 bash[16344]: audit 2024-01-24T02:55:30.657686+0000 mon.smithi152 (mon.0) 494 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:32.192 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:32 smithi152 bash[16344]: cephadm 2024-01-24T02:55:30.655891+0000 mgr.smithi152.jkoscf (mgr.14182) 73 : cephadm [INF] Reconfiguring mon.smithi152 (unknown last config time)... 2024-01-24T02:55:32.192 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:32 smithi152 bash[16344]: cephadm 2024-01-24T02:55:30.658380+0000 mgr.smithi152.jkoscf (mgr.14182) 74 : cephadm [INF] Reconfiguring daemon mon.smithi152 on smithi152 2024-01-24T02:55:32.192 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:32 smithi152 bash[16344]: cluster 2024-01-24T02:55:31.078385+0000 mgr.smithi152.jkoscf (mgr.14182) 75 : cluster [DBG] pgmap v84: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:32.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:32 smithi195 bash[19846]: cephadm 2024-01-24T02:55:30.655891+0000 mgr.smithi152.jkoscf (mgr.14182) 73 : cephadm [INF] Reconfiguring mon.smithi152 (unknown last config time)... 2024-01-24T02:55:32.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:32 smithi195 bash[19846]: cephadm 2024-01-24T02:55:30.658380+0000 mgr.smithi152.jkoscf (mgr.14182) 74 : cephadm [INF] Reconfiguring daemon mon.smithi152 on smithi152 2024-01-24T02:55:32.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:32 smithi195 bash[19846]: cluster 2024-01-24T02:55:31.078385+0000 mgr.smithi152.jkoscf (mgr.14182) 75 : cluster [DBG] pgmap v84: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:34.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:34 smithi152 bash[16344]: audit 2024-01-24T02:55:33.072984+0000 mon.smithi152 (mon.0) 495 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:34.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:34 smithi152 bash[16344]: cephadm 2024-01-24T02:55:33.073920+0000 mgr.smithi152.jkoscf (mgr.14182) 76 : cephadm [INF] Reconfiguring mgr.smithi152.jkoscf (unknown last config time)... 2024-01-24T02:55:34.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:34 smithi152 bash[16344]: audit 2024-01-24T02:55:33.074328+0000 mon.smithi152 (mon.0) 496 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi152.jkoscf", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-24T02:55:34.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:34 smithi152 bash[16344]: audit 2024-01-24T02:55:33.075375+0000 mon.smithi152 (mon.0) 497 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-24T02:55:34.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:34 smithi152 bash[16344]: audit 2024-01-24T02:55:33.076272+0000 mon.smithi152 (mon.0) 498 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:34.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:34 smithi152 bash[16344]: cephadm 2024-01-24T02:55:33.077161+0000 mgr.smithi152.jkoscf (mgr.14182) 77 : cephadm [INF] Reconfiguring daemon mgr.smithi152.jkoscf on smithi152 2024-01-24T02:55:34.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:34 smithi152 bash[16344]: cluster 2024-01-24T02:55:33.078841+0000 mgr.smithi152.jkoscf (mgr.14182) 78 : cluster [DBG] pgmap v85: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:34.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:34 smithi195 bash[19846]: audit 2024-01-24T02:55:33.072984+0000 mon.smithi152 (mon.0) 495 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:34.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:34 smithi195 bash[19846]: cephadm 2024-01-24T02:55:33.073920+0000 mgr.smithi152.jkoscf (mgr.14182) 76 : cephadm [INF] Reconfiguring mgr.smithi152.jkoscf (unknown last config time)... 2024-01-24T02:55:34.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:34 smithi195 bash[19846]: audit 2024-01-24T02:55:33.074328+0000 mon.smithi152 (mon.0) 496 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi152.jkoscf", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-24T02:55:34.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:34 smithi195 bash[19846]: audit 2024-01-24T02:55:33.075375+0000 mon.smithi152 (mon.0) 497 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-24T02:55:34.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:34 smithi195 bash[19846]: audit 2024-01-24T02:55:33.076272+0000 mon.smithi152 (mon.0) 498 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:34.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:34 smithi195 bash[19846]: cephadm 2024-01-24T02:55:33.077161+0000 mgr.smithi152.jkoscf (mgr.14182) 77 : cephadm [INF] Reconfiguring daemon mgr.smithi152.jkoscf on smithi152 2024-01-24T02:55:34.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:34 smithi195 bash[19846]: cluster 2024-01-24T02:55:33.078841+0000 mgr.smithi152.jkoscf (mgr.14182) 78 : cluster [DBG] pgmap v85: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:34.678 INFO:teuthology.orchestra.run.smithi152.stdout:[client.0] 2024-01-24T02:55:34.678 INFO:teuthology.orchestra.run.smithi152.stdout: key = AQAmfLBly3YUKBAAtgqi+a4jnc9Gbzf16ZTkgg== 2024-01-24T02:55:35.428 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:35 smithi152 bash[16344]: audit 2024-01-24T02:55:34.672264+0000 mon.smithi152 (mon.0) 499 : audit [INF] from='client.? 172.21.15.152:0/1636599985' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-24T02:55:35.428 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:35 smithi152 bash[16344]: audit 2024-01-24T02:55:34.678373+0000 mon.smithi152 (mon.0) 500 : audit [INF] from='client.? 172.21.15.152:0/1636599985' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-01-24T02:55:35.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:35 smithi195 bash[19846]: audit 2024-01-24T02:55:34.672264+0000 mon.smithi152 (mon.0) 499 : audit [INF] from='client.? 172.21.15.152:0/1636599985' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-24T02:55:35.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:35 smithi195 bash[19846]: audit 2024-01-24T02:55:34.678373+0000 mon.smithi152 (mon.0) 500 : audit [INF] from='client.? 172.21.15.152:0/1636599985' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-01-24T02:55:35.586 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T02:55:35.586 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-01-24T02:55:35.586 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-01-24T02:55:35.601 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-01-24T02:55:36.647 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:36 smithi195 bash[19846]: cluster 2024-01-24T02:55:35.079483+0000 mgr.smithi152.jkoscf (mgr.14182) 79 : cluster [DBG] pgmap v86: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:36.648 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:36 smithi195 bash[19846]: audit 2024-01-24T02:55:35.365253+0000 mon.smithi152 (mon.0) 501 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:36.648 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:36 smithi195 bash[19846]: cephadm 2024-01-24T02:55:35.366606+0000 mgr.smithi152.jkoscf (mgr.14182) 80 : cephadm [INF] Reconfiguring alertmanager.smithi152 (dependencies changed)... 2024-01-24T02:55:36.648 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:36 smithi195 bash[19846]: cephadm 2024-01-24T02:55:35.374282+0000 mgr.smithi152.jkoscf (mgr.14182) 81 : cephadm [INF] Reconfiguring daemon alertmanager.smithi152 on smithi152 2024-01-24T02:55:36.666 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:36 smithi152 bash[16344]: cluster 2024-01-24T02:55:35.079483+0000 mgr.smithi152.jkoscf (mgr.14182) 79 : cluster [DBG] pgmap v86: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:36.666 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:36 smithi152 bash[16344]: audit 2024-01-24T02:55:35.365253+0000 mon.smithi152 (mon.0) 501 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:36.666 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:36 smithi152 bash[16344]: cephadm 2024-01-24T02:55:35.366606+0000 mgr.smithi152.jkoscf (mgr.14182) 80 : cephadm [INF] Reconfiguring alertmanager.smithi152 (dependencies changed)... 2024-01-24T02:55:36.666 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:36 smithi152 bash[16344]: cephadm 2024-01-24T02:55:35.374282+0000 mgr.smithi152.jkoscf (mgr.14182) 81 : cephadm [INF] Reconfiguring daemon alertmanager.smithi152 on smithi152 2024-01-24T02:55:38.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:38 smithi195 bash[19846]: cluster 2024-01-24T02:55:37.080099+0000 mgr.smithi152.jkoscf (mgr.14182) 82 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:38.676 INFO:teuthology.orchestra.run.smithi195.stdout:[client.1] 2024-01-24T02:55:38.676 INFO:teuthology.orchestra.run.smithi195.stdout: key = AQAqfLBlq/vpJxAAhLY43xIeKIHnGWxueeHF4Q== 2024-01-24T02:55:38.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:38 smithi152 bash[16344]: cluster 2024-01-24T02:55:37.080099+0000 mgr.smithi152.jkoscf (mgr.14182) 82 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:39.269 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-01-24T02:55:39.270 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-01-24T02:55:39.270 DEBUG:teuthology.orchestra.run.smithi195:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-01-24T02:55:39.291 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd dump --format=json 2024-01-24T02:55:39.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:39 smithi152 bash[16344]: audit 2024-01-24T02:55:38.668419+0000 mon.smithi195 (mon.1) 18 : audit [INF] from='client.? 172.21.15.195:0/788300431' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-24T02:55:39.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:39 smithi152 bash[16344]: audit 2024-01-24T02:55:38.669278+0000 mon.smithi152 (mon.0) 502 : audit [INF] from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-24T02:55:39.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:39 smithi152 bash[16344]: audit 2024-01-24T02:55:38.674919+0000 mon.smithi152 (mon.0) 503 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-01-24T02:55:39.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:39 smithi195 bash[19846]: audit 2024-01-24T02:55:38.668419+0000 mon.smithi195 (mon.1) 18 : audit [INF] from='client.? 172.21.15.195:0/788300431' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-24T02:55:39.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:39 smithi195 bash[19846]: audit 2024-01-24T02:55:38.669278+0000 mon.smithi152 (mon.0) 502 : audit [INF] from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-24T02:55:39.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:39 smithi195 bash[19846]: audit 2024-01-24T02:55:38.674919+0000 mon.smithi152 (mon.0) 503 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-01-24T02:55:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:40 smithi195 bash[19846]: cluster 2024-01-24T02:55:39.080688+0000 mgr.smithi152.jkoscf (mgr.14182) 83 : cluster [DBG] pgmap v88: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:40 smithi195 bash[19846]: audit 2024-01-24T02:55:39.759037+0000 mon.smithi152 (mon.0) 504 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:40 smithi195 bash[19846]: audit 2024-01-24T02:55:39.760375+0000 mon.smithi152 (mon.0) 505 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi152", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-24T02:55:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:40 smithi195 bash[19846]: audit 2024-01-24T02:55:39.761446+0000 mon.smithi152 (mon.0) 506 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:40.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:40 smithi152 bash[16344]: cluster 2024-01-24T02:55:39.080688+0000 mgr.smithi152.jkoscf (mgr.14182) 83 : cluster [DBG] pgmap v88: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:40.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:40 smithi152 bash[16344]: audit 2024-01-24T02:55:39.759037+0000 mon.smithi152 (mon.0) 504 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:40.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:40 smithi152 bash[16344]: audit 2024-01-24T02:55:39.760375+0000 mon.smithi152 (mon.0) 505 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi152", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-24T02:55:40.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:40 smithi152 bash[16344]: audit 2024-01-24T02:55:39.761446+0000 mon.smithi152 (mon.0) 506 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:41.485 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:41 smithi152 bash[16344]: cephadm 2024-01-24T02:55:39.760045+0000 mgr.smithi152.jkoscf (mgr.14182) 84 : cephadm [INF] Reconfiguring crash.smithi152 (monmap changed)... 2024-01-24T02:55:41.485 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:41 smithi152 bash[16344]: cephadm 2024-01-24T02:55:39.762287+0000 mgr.smithi152.jkoscf (mgr.14182) 85 : cephadm [INF] Reconfiguring daemon crash.smithi152 on smithi152 2024-01-24T02:55:41.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:41 smithi195 bash[19846]: cephadm 2024-01-24T02:55:39.760045+0000 mgr.smithi152.jkoscf (mgr.14182) 84 : cephadm [INF] Reconfiguring crash.smithi152 (monmap changed)... 2024-01-24T02:55:41.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:41 smithi195 bash[19846]: cephadm 2024-01-24T02:55:39.762287+0000 mgr.smithi152.jkoscf (mgr.14182) 85 : cephadm [INF] Reconfiguring daemon crash.smithi152 on smithi152 2024-01-24T02:55:42.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:42 smithi195 bash[19846]: cluster 2024-01-24T02:55:41.081384+0000 mgr.smithi152.jkoscf (mgr.14182) 86 : cluster [DBG] pgmap v89: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:42.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:42 smithi195 bash[19846]: audit 2024-01-24T02:55:42.155449+0000 mon.smithi152 (mon.0) 507 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:42.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:42 smithi152 bash[16344]: cluster 2024-01-24T02:55:41.081384+0000 mgr.smithi152.jkoscf (mgr.14182) 86 : cluster [DBG] pgmap v89: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:42.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:42 smithi152 bash[16344]: audit 2024-01-24T02:55:42.155449+0000 mon.smithi152 (mon.0) 507 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:43.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:43 smithi152 bash[16344]: cephadm 2024-01-24T02:55:42.157219+0000 mgr.smithi152.jkoscf (mgr.14182) 87 : cephadm [INF] Reconfiguring grafana.smithi152 (dependencies changed)... 2024-01-24T02:55:43.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:43 smithi152 bash[16344]: cephadm 2024-01-24T02:55:42.200993+0000 mgr.smithi152.jkoscf (mgr.14182) 88 : cephadm [INF] Reconfiguring daemon grafana.smithi152 on smithi152 2024-01-24T02:55:43.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:43 smithi195 bash[19846]: cephadm 2024-01-24T02:55:42.157219+0000 mgr.smithi152.jkoscf (mgr.14182) 87 : cephadm [INF] Reconfiguring grafana.smithi152 (dependencies changed)... 2024-01-24T02:55:43.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:43 smithi195 bash[19846]: cephadm 2024-01-24T02:55:42.200993+0000 mgr.smithi152.jkoscf (mgr.14182) 88 : cephadm [INF] Reconfiguring daemon grafana.smithi152 on smithi152 2024-01-24T02:55:44.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:44 smithi195 bash[19846]: cluster 2024-01-24T02:55:43.082217+0000 mgr.smithi152.jkoscf (mgr.14182) 89 : cluster [DBG] pgmap v90: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:44.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:44 smithi152 bash[16344]: cluster 2024-01-24T02:55:43.082217+0000 mgr.smithi152.jkoscf (mgr.14182) 89 : cluster [DBG] pgmap v90: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:45.130 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:55:46.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:46 smithi195 bash[19846]: cluster 2024-01-24T02:55:45.082867+0000 mgr.smithi152.jkoscf (mgr.14182) 90 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:46.750 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:46 smithi152 bash[16344]: cluster 2024-01-24T02:55:45.082867+0000 mgr.smithi152.jkoscf (mgr.14182) 90 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:48.721 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:48 smithi195 bash[19846]: cluster 2024-01-24T02:55:47.083583+0000 mgr.smithi152.jkoscf (mgr.14182) 91 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:48.721 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:48 smithi195 bash[19846]: audit 2024-01-24T02:55:47.662621+0000 mon.smithi152 (mon.0) 508 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:48.721 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:48 smithi195 bash[19846]: audit 2024-01-24T02:55:47.665071+0000 mon.smithi152 (mon.0) 509 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-24T02:55:48.721 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:48 smithi195 bash[19846]: audit 2024-01-24T02:55:47.666872+0000 mon.smithi152 (mon.0) 510 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:48.802 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:48 smithi152 bash[16344]: cluster 2024-01-24T02:55:47.083583+0000 mgr.smithi152.jkoscf (mgr.14182) 91 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:48.803 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:48 smithi152 bash[16344]: audit 2024-01-24T02:55:47.662621+0000 mon.smithi152 (mon.0) 508 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:48.803 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:48 smithi152 bash[16344]: audit 2024-01-24T02:55:47.665071+0000 mon.smithi152 (mon.0) 509 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-24T02:55:48.803 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:48 smithi152 bash[16344]: audit 2024-01-24T02:55:47.666872+0000 mon.smithi152 (mon.0) 510 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:49.248 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:55:49.248 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":39,"fsid":"676f9788-ba63-11ee-95b1-87774f69a715","created":"2024-01-24T02:51:36.709825+0000","modified":"2024-01-24T02:55:30.120594+0000","last_up_change":"2024-01-24T02:55:28.106665+0000","last_in_change":"2024-01-24T02:54:39.969769+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-01-24T02:55:10.040003+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"23","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"21e10507-d08d-41af-9de7-b9a1a0b8769e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6800","nonce":2490905},{"type":"v1","addr":"172.21.15.195:6801","nonce":2490905}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6802","nonce":2490905},{"type":"v1","addr":"172.21.15.195:6803","nonce":2490905}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6806","nonce":2490905},{"type":"v1","addr":"172.21.15.195:6807","nonce":2490905}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6804","nonce":2490905},{"type":"v1","addr":"172.21.15.195:6805","nonce":2490905}]},"public_addr":"172.21.15.195:6801/2490905","cluster_addr":"172.21.15.195:6803/2490905","heartbeat_back_addr":"172.21.15.195:6807/2490905","heartbeat_front_addr":"172.21.15.195:6805/2490905","state":["exists","up"]},{"osd":1,"uuid":"f68c6b3d-d0bd-455e-b7ff-5370a83c7a7c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6802","nonce":3034004976},{"type":"v1","addr":"172.21.15.152:6803","nonce":3034004976}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6804","nonce":3034004976},{"type":"v1","addr":"172.21.15.152:6805","nonce":3034004976}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6808","nonce":3034004976},{"type":"v1","addr":"172.21.15.152:6809","nonce":3034004976}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6806","nonce":3034004976},{"type":"v1","addr":"172.21.15.152:6807","nonce":3034004976}]},"public_addr":"172.21.15.152:6803/3034004976","cluster_addr":"172.21.15.152:6805/3034004976","heartbeat_back_addr":"172.21.15.152:6809/3034004976","heartbeat_front_addr":"172.21.15.152:6807/3034004976","state":["exists","up"]},{"osd":2,"uuid":"8956ac53-b604-4add-a140-c3702482222a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6808","nonce":1871178635},{"type":"v1","addr":"172.21.15.195:6809","nonce":1871178635}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6810","nonce":1871178635},{"type":"v1","addr":"172.21.15.195:6811","nonce":1871178635}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6814","nonce":1871178635},{"type":"v1","addr":"172.21.15.195:6815","nonce":1871178635}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6812","nonce":1871178635},{"type":"v1","addr":"172.21.15.195:6813","nonce":1871178635}]},"public_addr":"172.21.15.195:6809/1871178635","cluster_addr":"172.21.15.195:6811/1871178635","heartbeat_back_addr":"172.21.15.195:6815/1871178635","heartbeat_front_addr":"172.21.15.195:6813/1871178635","state":["exists","up"]},{"osd":3,"uuid":"391cc68d-47c9-4281-8b79-761599f03bb2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6810","nonce":3162430233},{"type":"v1","addr":"172.21.15.152:6811","nonce":3162430233}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6812","nonce":3162430233},{"type":"v1","addr":"172.21.15.152:6813","nonce":3162430233}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6816","nonce":3162430233},{"type":"v1","addr":"172.21.15.152:6817","nonce":3162430233}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6814","nonce":3162430233},{"type":"v1","addr":"172.21.15.152:6815","nonce":3162430233}]},"public_addr":"172.21.15.152:6811/3162430233","cluster_addr":"172.21.15.152:6813/3162430233","heartbeat_back_addr":"172.21.15.152:6817/3162430233","heartbeat_front_addr":"172.21.15.152:6815/3162430233","state":["exists","up"]},{"osd":4,"uuid":"2ca476b4-dbd2-48fe-b87b-256a6762bee4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6816","nonce":637602785},{"type":"v1","addr":"172.21.15.195:6817","nonce":637602785}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6818","nonce":637602785},{"type":"v1","addr":"172.21.15.195:6819","nonce":637602785}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6822","nonce":637602785},{"type":"v1","addr":"172.21.15.195:6823","nonce":637602785}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6820","nonce":637602785},{"type":"v1","addr":"172.21.15.195:6821","nonce":637602785}]},"public_addr":"172.21.15.195:6817/637602785","cluster_addr":"172.21.15.195:6819/637602785","heartbeat_back_addr":"172.21.15.195:6823/637602785","heartbeat_front_addr":"172.21.15.195:6821/637602785","state":["exists","up"]},{"osd":5,"uuid":"beb2417b-faaf-4c72-b58b-7245024af5b5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6818","nonce":2566076046},{"type":"v1","addr":"172.21.15.152:6819","nonce":2566076046}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6820","nonce":2566076046},{"type":"v1","addr":"172.21.15.152:6821","nonce":2566076046}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6824","nonce":2566076046},{"type":"v1","addr":"172.21.15.152:6825","nonce":2566076046}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6822","nonce":2566076046},{"type":"v1","addr":"172.21.15.152:6823","nonce":2566076046}]},"public_addr":"172.21.15.152:6819/2566076046","cluster_addr":"172.21.15.152:6821/2566076046","heartbeat_back_addr":"172.21.15.152:6825/2566076046","heartbeat_front_addr":"172.21.15.152:6823/2566076046","state":["exists","up"]},{"osd":6,"uuid":"77577e7b-2890-4666-a72a-d488d6d7da7b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6824","nonce":1260107478},{"type":"v1","addr":"172.21.15.195:6825","nonce":1260107478}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6826","nonce":1260107478},{"type":"v1","addr":"172.21.15.195:6827","nonce":1260107478}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6830","nonce":1260107478},{"type":"v1","addr":"172.21.15.195:6831","nonce":1260107478}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6828","nonce":1260107478},{"type":"v1","addr":"172.21.15.195:6829","nonce":1260107478}]},"public_addr":"172.21.15.195:6825/1260107478","cluster_addr":"172.21.15.195:6827/1260107478","heartbeat_back_addr":"172.21.15.195:6831/1260107478","heartbeat_front_addr":"172.21.15.195:6829/1260107478","state":["exists","up"]},{"osd":7,"uuid":"c801747f-6eb0-4277-9d33-333fd642167b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6826","nonce":2151467856},{"type":"v1","addr":"172.21.15.152:6827","nonce":2151467856}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6828","nonce":2151467856},{"type":"v1","addr":"172.21.15.152:6829","nonce":2151467856}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6832","nonce":2151467856},{"type":"v1","addr":"172.21.15.152:6833","nonce":2151467856}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6830","nonce":2151467856},{"type":"v1","addr":"172.21.15.152:6831","nonce":2151467856}]},"public_addr":"172.21.15.152:6827/2151467856","cluster_addr":"172.21.15.152:6829/2151467856","heartbeat_back_addr":"172.21.15.152:6833/2151467856","heartbeat_front_addr":"172.21.15.152:6831/2151467856","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:03.025977+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:08.306435+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:07.994963+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:14.761039+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:13.021358+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:21.302577+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:17.015928+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:26.695557+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.152:6800/3611135937":"2024-01-25T02:53:39.040243+0000","172.21.15.152:0/2944905240":"2024-01-25T02:53:39.040243+0000","172.21.15.152:0/3525882027":"2024-01-25T02:52:43.660331+0000","172.21.15.152:6801/3611135937":"2024-01-25T02:53:39.040243+0000","172.21.15.152:6801/3019871099":"2024-01-25T02:52:43.660331+0000","172.21.15.152:0/3887487151":"2024-01-25T02:53:39.040243+0000","172.21.15.152:0/524426085":"2024-01-25T02:52:43.660331+0000","172.21.15.152:6800/3077167777":"2024-01-25T02:52:04.164188+0000","172.21.15.152:6801/3077167777":"2024-01-25T02:52:04.164188+0000","172.21.15.152:6800/3019871099":"2024-01-25T02:52:43.660331+0000","172.21.15.152:0/1924332518":"2024-01-25T02:52:04.164188+0000","172.21.15.152:0/1655928565":"2024-01-25T02:52:04.164188+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-01-24T02:55:49.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:49 smithi195 bash[19846]: cephadm 2024-01-24T02:55:47.664494+0000 mgr.smithi152.jkoscf (mgr.14182) 92 : cephadm [INF] Reconfiguring crash.smithi195 (monmap changed)... 2024-01-24T02:55:49.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:49 smithi195 bash[19846]: cephadm 2024-01-24T02:55:47.668051+0000 mgr.smithi152.jkoscf (mgr.14182) 93 : cephadm [INF] Reconfiguring daemon crash.smithi195 on smithi195 2024-01-24T02:55:49.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:49 smithi195 bash[19846]: audit 2024-01-24T02:55:49.246249+0000 mon.smithi152 (mon.0) 511 : audit [DBG] from='client.? 172.21.15.152:0/3698714000' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-24T02:55:49.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:49 smithi152 bash[16344]: cephadm 2024-01-24T02:55:47.664494+0000 mgr.smithi152.jkoscf (mgr.14182) 92 : cephadm [INF] Reconfiguring crash.smithi195 (monmap changed)... 2024-01-24T02:55:49.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:49 smithi152 bash[16344]: cephadm 2024-01-24T02:55:47.668051+0000 mgr.smithi152.jkoscf (mgr.14182) 93 : cephadm [INF] Reconfiguring daemon crash.smithi195 on smithi195 2024-01-24T02:55:49.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:49 smithi152 bash[16344]: audit 2024-01-24T02:55:49.246249+0000 mon.smithi152 (mon.0) 511 : audit [DBG] from='client.? 172.21.15.152:0/3698714000' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-24T02:55:49.895 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': 'device_health_metrics', 'create_time': '2024-01-24T02:55:10.040003+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '23', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr_devicehealth': {}}}] 2024-01-24T02:55:49.896 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd pool get device_health_metrics pg_num 2024-01-24T02:55:50.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:50 smithi195 bash[19846]: cluster 2024-01-24T02:55:49.084068+0000 mgr.smithi152.jkoscf (mgr.14182) 94 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:50.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:50 smithi195 bash[19846]: audit 2024-01-24T02:55:49.539396+0000 mon.smithi152 (mon.0) 512 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:50.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:50 smithi195 bash[19846]: cephadm 2024-01-24T02:55:49.540583+0000 mgr.smithi152.jkoscf (mgr.14182) 95 : cephadm [INF] Reconfiguring mgr.smithi195.utuqsp (monmap changed)... 2024-01-24T02:55:50.799 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:50 smithi195 bash[19846]: audit 2024-01-24T02:55:49.541061+0000 mon.smithi152 (mon.0) 513 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi195.utuqsp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-24T02:55:50.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:50 smithi195 bash[19846]: audit 2024-01-24T02:55:49.542713+0000 mon.smithi152 (mon.0) 514 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-24T02:55:50.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:50 smithi195 bash[19846]: audit 2024-01-24T02:55:49.544275+0000 mon.smithi152 (mon.0) 515 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:50.800 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:50 smithi195 bash[19846]: cephadm 2024-01-24T02:55:49.545432+0000 mgr.smithi152.jkoscf (mgr.14182) 96 : cephadm [INF] Reconfiguring daemon mgr.smithi195.utuqsp on smithi195 2024-01-24T02:55:50.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:50 smithi152 bash[16344]: cluster 2024-01-24T02:55:49.084068+0000 mgr.smithi152.jkoscf (mgr.14182) 94 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:50.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:50 smithi152 bash[16344]: audit 2024-01-24T02:55:49.539396+0000 mon.smithi152 (mon.0) 512 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:50.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:50 smithi152 bash[16344]: cephadm 2024-01-24T02:55:49.540583+0000 mgr.smithi152.jkoscf (mgr.14182) 95 : cephadm [INF] Reconfiguring mgr.smithi195.utuqsp (monmap changed)... 2024-01-24T02:55:50.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:50 smithi152 bash[16344]: audit 2024-01-24T02:55:49.541061+0000 mon.smithi152 (mon.0) 513 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi195.utuqsp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-24T02:55:50.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:50 smithi152 bash[16344]: audit 2024-01-24T02:55:49.542713+0000 mon.smithi152 (mon.0) 514 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-24T02:55:50.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:50 smithi152 bash[16344]: audit 2024-01-24T02:55:49.544275+0000 mon.smithi152 (mon.0) 515 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:50.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:50 smithi152 bash[16344]: cephadm 2024-01-24T02:55:49.545432+0000 mgr.smithi152.jkoscf (mgr.14182) 96 : cephadm [INF] Reconfiguring daemon mgr.smithi195.utuqsp on smithi195 2024-01-24T02:55:52.560 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:52 smithi195 bash[19846]: cluster 2024-01-24T02:55:51.084634+0000 mgr.smithi152.jkoscf (mgr.14182) 97 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:52.561 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:52 smithi195 bash[19846]: audit 2024-01-24T02:55:51.395582+0000 mon.smithi152 (mon.0) 516 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:52.561 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:52 smithi195 bash[19846]: cephadm 2024-01-24T02:55:51.397174+0000 mgr.smithi152.jkoscf (mgr.14182) 98 : cephadm [INF] Reconfiguring mon.smithi195 (monmap changed)... 2024-01-24T02:55:52.561 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:52 smithi195 bash[19846]: audit 2024-01-24T02:55:51.397783+0000 mon.smithi152 (mon.0) 517 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-24T02:55:52.561 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:52 smithi195 bash[19846]: audit 2024-01-24T02:55:51.399387+0000 mon.smithi152 (mon.0) 518 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-24T02:55:52.561 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:52 smithi195 bash[19846]: audit 2024-01-24T02:55:51.400929+0000 mon.smithi152 (mon.0) 519 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:52.561 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:52 smithi195 bash[19846]: cephadm 2024-01-24T02:55:51.402345+0000 mgr.smithi152.jkoscf (mgr.14182) 99 : cephadm [INF] Reconfiguring daemon mon.smithi195 on smithi195 2024-01-24T02:55:52.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:52 smithi152 bash[16344]: cluster 2024-01-24T02:55:51.084634+0000 mgr.smithi152.jkoscf (mgr.14182) 97 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:52.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:52 smithi152 bash[16344]: audit 2024-01-24T02:55:51.395582+0000 mon.smithi152 (mon.0) 516 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:52.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:52 smithi152 bash[16344]: cephadm 2024-01-24T02:55:51.397174+0000 mgr.smithi152.jkoscf (mgr.14182) 98 : cephadm [INF] Reconfiguring mon.smithi195 (monmap changed)... 2024-01-24T02:55:52.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:52 smithi152 bash[16344]: audit 2024-01-24T02:55:51.397783+0000 mon.smithi152 (mon.0) 517 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-24T02:55:52.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:52 smithi152 bash[16344]: audit 2024-01-24T02:55:51.399387+0000 mon.smithi152 (mon.0) 518 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-24T02:55:52.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:52 smithi152 bash[16344]: audit 2024-01-24T02:55:51.400929+0000 mon.smithi152 (mon.0) 519 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:55:52.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:52 smithi152 bash[16344]: cephadm 2024-01-24T02:55:51.402345+0000 mgr.smithi152.jkoscf (mgr.14182) 99 : cephadm [INF] Reconfiguring daemon mon.smithi195 on smithi195 2024-01-24T02:55:54.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: cluster 2024-01-24T02:55:53.085222+0000 mgr.smithi152.jkoscf (mgr.14182) 100 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:54.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.138801+0000 mon.smithi152 (mon.0) 520 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:54.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.145979+0000 mon.smithi152 (mon.0) 521 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.146935+0000 mgr.smithi152.jkoscf (mgr.14182) 101 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.148918+0000 mon.smithi152 (mon.0) 522 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi152.front.sepia.ceph.com:9093"}]: dispatch 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.149750+0000 mgr.smithi152.jkoscf (mgr.14182) 102 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi152.front.sepia.ceph.com:9093"}]: dispatch 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.157885+0000 mon.smithi152 (mon.0) 523 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.166840+0000 mon.smithi152 (mon.0) 524 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.167639+0000 mgr.smithi152.jkoscf (mgr.14182) 103 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.176767+0000 mon.smithi152 (mon.0) 525 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi152.front.sepia.ceph.com:3000"}]: dispatch 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.177604+0000 mgr.smithi152.jkoscf (mgr.14182) 104 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi152.front.sepia.ceph.com:3000"}]: dispatch 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.187268+0000 mon.smithi152 (mon.0) 526 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.198191+0000 mon.smithi152 (mon.0) 527 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.198908+0000 mgr.smithi152.jkoscf (mgr.14182) 105 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.205109+0000 mon.smithi152 (mon.0) 528 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi195.front.sepia.ceph.com:9095"}]: dispatch 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.205635+0000 mgr.smithi152.jkoscf (mgr.14182) 106 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi195.front.sepia.ceph.com:9095"}]: dispatch 2024-01-24T02:55:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.211709+0000 mon.smithi152 (mon.0) 529 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:54.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:54 smithi195 bash[19846]: audit 2024-01-24T02:55:53.217419+0000 mon.smithi152 (mon.0) 530 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:55:54.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: cluster 2024-01-24T02:55:53.085222+0000 mgr.smithi152.jkoscf (mgr.14182) 100 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:54.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.138801+0000 mon.smithi152 (mon.0) 520 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:54.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.145979+0000 mon.smithi152 (mon.0) 521 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-24T02:55:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.146935+0000 mgr.smithi152.jkoscf (mgr.14182) 101 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-24T02:55:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.148918+0000 mon.smithi152 (mon.0) 522 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi152.front.sepia.ceph.com:9093"}]: dispatch 2024-01-24T02:55:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.149750+0000 mgr.smithi152.jkoscf (mgr.14182) 102 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi152.front.sepia.ceph.com:9093"}]: dispatch 2024-01-24T02:55:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.157885+0000 mon.smithi152 (mon.0) 523 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.166840+0000 mon.smithi152 (mon.0) 524 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-24T02:55:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.167639+0000 mgr.smithi152.jkoscf (mgr.14182) 103 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-24T02:55:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.176767+0000 mon.smithi152 (mon.0) 525 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi152.front.sepia.ceph.com:3000"}]: dispatch 2024-01-24T02:55:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.177604+0000 mgr.smithi152.jkoscf (mgr.14182) 104 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi152.front.sepia.ceph.com:3000"}]: dispatch 2024-01-24T02:55:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.187268+0000 mon.smithi152 (mon.0) 526 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.198191+0000 mon.smithi152 (mon.0) 527 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-24T02:55:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.198908+0000 mgr.smithi152.jkoscf (mgr.14182) 105 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-24T02:55:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.205109+0000 mon.smithi152 (mon.0) 528 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi195.front.sepia.ceph.com:9095"}]: dispatch 2024-01-24T02:55:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.205635+0000 mgr.smithi152.jkoscf (mgr.14182) 106 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi195.front.sepia.ceph.com:9095"}]: dispatch 2024-01-24T02:55:54.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.211709+0000 mon.smithi152 (mon.0) 529 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:55:54.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:54 smithi152 bash[16344]: audit 2024-01-24T02:55:53.217419+0000 mon.smithi152 (mon.0) 530 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:55:54.734 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:55:56.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:56 smithi152 bash[16344]: cluster 2024-01-24T02:55:55.085852+0000 mgr.smithi152.jkoscf (mgr.14182) 107 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:56.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:56 smithi195 bash[19846]: cluster 2024-01-24T02:55:55.085852+0000 mgr.smithi152.jkoscf (mgr.14182) 107 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:57.818 INFO:teuthology.orchestra.run.smithi152.stdout:pg_num: 1 2024-01-24T02:55:58.390 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-01-24T02:55:58.390 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-01-24T02:55:58.390 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph mgr dump --format=json 2024-01-24T02:55:58.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:58 smithi195 bash[19846]: cluster 2024-01-24T02:55:57.086492+0000 mgr.smithi152.jkoscf (mgr.14182) 108 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:58.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:58 smithi195 bash[19846]: audit 2024-01-24T02:55:57.818521+0000 mon.smithi152 (mon.0) 531 : audit [DBG] from='client.? 172.21.15.152:0/955380821' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-01-24T02:55:58.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:58 smithi152 bash[16344]: cluster 2024-01-24T02:55:57.086492+0000 mgr.smithi152.jkoscf (mgr.14182) 108 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:55:58.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:58 smithi152 bash[16344]: audit 2024-01-24T02:55:57.818521+0000 mon.smithi152 (mon.0) 531 : audit [DBG] from='client.? 172.21.15.152:0/955380821' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-01-24T02:56:00.195 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:59 smithi195 bash[19846]: audit 2024-01-24T02:55:58.909685+0000 mon.smithi152 (mon.0) 532 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:00.195 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:59 smithi195 bash[19846]: cluster 2024-01-24T02:55:59.087026+0000 mgr.smithi152.jkoscf (mgr.14182) 109 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:00.195 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:55:59 smithi195 bash[19846]: audit 2024-01-24T02:55:59.091257+0000 mon.smithi152 (mon.0) 533 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:00.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:59 smithi152 bash[16344]: audit 2024-01-24T02:55:58.909685+0000 mon.smithi152 (mon.0) 532 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:00.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:59 smithi152 bash[16344]: cluster 2024-01-24T02:55:59.087026+0000 mgr.smithi152.jkoscf (mgr.14182) 109 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:00.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:55:59 smithi152 bash[16344]: audit 2024-01-24T02:55:59.091257+0000 mon.smithi152 (mon.0) 533 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:02.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:02 smithi195 bash[19846]: cluster 2024-01-24T02:56:01.087637+0000 mgr.smithi152.jkoscf (mgr.14182) 110 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:02.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:02 smithi152 bash[16344]: cluster 2024-01-24T02:56:01.087637+0000 mgr.smithi152.jkoscf (mgr.14182) 110 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:03.242 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:56:04.479 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:04 smithi152 bash[16344]: cluster 2024-01-24T02:56:03.088235+0000 mgr.smithi152.jkoscf (mgr.14182) 111 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:04.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:04 smithi195 bash[19846]: cluster 2024-01-24T02:56:03.088235+0000 mgr.smithi152.jkoscf (mgr.14182) 111 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:06.425 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:06 smithi195 bash[19846]: cluster 2024-01-24T02:56:05.088832+0000 mgr.smithi152.jkoscf (mgr.14182) 112 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:06.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:06 smithi152 bash[16344]: cluster 2024-01-24T02:56:05.088832+0000 mgr.smithi152.jkoscf (mgr.14182) 112 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:07.132 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:56:07.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:07 smithi195 bash[19846]: audit 2024-01-24T02:56:07.122925+0000 mon.smithi152 (mon.0) 534 : audit [DBG] from='client.? 172.21.15.152:0/280955988' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-01-24T02:56:07.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:07 smithi152 bash[16344]: audit 2024-01-24T02:56:07.122925+0000 mon.smithi152 (mon.0) 534 : audit [DBG] from='client.? 172.21.15.152:0/280955988' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-01-24T02:56:07.792 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":18,"active_gid":14182,"active_name":"smithi152.jkoscf","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6800","nonce":1956201246},{"type":"v1","addr":"172.21.15.152:6801","nonce":1956201246}]},"active_addr":"172.21.15.152:6801/1956201246","active_change":"2024-01-24T02:53:39.040616+0000","active_mgr_features":4540138314316775423,"available":true,"standbys":[{"gid":14196,"name":"smithi195.utuqsp","mgr_features":4540138314316775423,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2400","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.23.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:8.3.5","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"docker.io/library/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"docker.io/arcts/keepalived","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.3.1","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.33.4","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"str","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"str","level":"advanced","flags":0,"default_value":"30","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"str","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"str","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"noautoscale":{"name":"noautoscale","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"global autoscale flag","long_desc":"Option to turn on/off the autoscaler for all pools","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"str","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","prometheus","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2400","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.23.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:8.3.5","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"docker.io/library/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"docker.io/arcts/keepalived","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.3.1","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.33.4","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"str","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"str","level":"advanced","flags":0,"default_value":"30","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"str","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"str","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"noautoscale":{"name":"noautoscale","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"global autoscale flag","long_desc":"Option to turn on/off the autoscaler for all pools","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"str","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.152:8443/","prometheus":"http://172.21.15.152:9283/"},"always_on_modules":{"nautilus":["balancer","crash","devicehealth","orchestrator_cli","progress","rbd_support","status","volumes"],"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":4,"active_clients":[{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.152:0","nonce":3608283922}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.152:0","nonce":415107680}]}]} 2024-01-24T02:56:07.796 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-01-24T02:56:07.797 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-01-24T02:56:07.797 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd dump --format=json 2024-01-24T02:56:08.488 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:08 smithi152 bash[16344]: cluster 2024-01-24T02:56:07.089294+0000 mgr.smithi152.jkoscf (mgr.14182) 113 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:08.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:08 smithi195 bash[19846]: cluster 2024-01-24T02:56:07.089294+0000 mgr.smithi152.jkoscf (mgr.14182) 113 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:09.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:09 smithi195 bash[19846]: cephadm 2024-01-24T02:56:08.586299+0000 mgr.smithi152.jkoscf (mgr.14182) 114 : cephadm [INF] Detected new or changed devices on smithi195 2024-01-24T02:56:09.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:09 smithi195 bash[19846]: audit 2024-01-24T02:56:08.596850+0000 mon.smithi152 (mon.0) 535 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:09.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:09 smithi195 bash[19846]: audit 2024-01-24T02:56:08.889816+0000 mon.smithi152 (mon.0) 536 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:09.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:09 smithi195 bash[19846]: audit 2024-01-24T02:56:08.891643+0000 mon.smithi152 (mon.0) 537 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:09 smithi195 bash[19846]: audit 2024-01-24T02:56:08.893260+0000 mon.smithi152 (mon.0) 538 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:09 smithi195 bash[19846]: audit 2024-01-24T02:56:08.895023+0000 mon.smithi152 (mon.0) 539 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:09 smithi195 bash[19846]: audit 2024-01-24T02:56:08.905937+0000 mon.smithi152 (mon.0) 540 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:09 smithi195 bash[19846]: audit 2024-01-24T02:56:09.347370+0000 mon.smithi152 (mon.0) 541 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:10.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:09 smithi152 bash[16344]: cephadm 2024-01-24T02:56:08.586299+0000 mgr.smithi152.jkoscf (mgr.14182) 114 : cephadm [INF] Detected new or changed devices on smithi195 2024-01-24T02:56:10.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:09 smithi152 bash[16344]: audit 2024-01-24T02:56:08.596850+0000 mon.smithi152 (mon.0) 535 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:10.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:09 smithi152 bash[16344]: audit 2024-01-24T02:56:08.889816+0000 mon.smithi152 (mon.0) 536 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:10.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:09 smithi152 bash[16344]: audit 2024-01-24T02:56:08.891643+0000 mon.smithi152 (mon.0) 537 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:10.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:09 smithi152 bash[16344]: audit 2024-01-24T02:56:08.893260+0000 mon.smithi152 (mon.0) 538 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:10.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:09 smithi152 bash[16344]: audit 2024-01-24T02:56:08.895023+0000 mon.smithi152 (mon.0) 539 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:10.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:09 smithi152 bash[16344]: audit 2024-01-24T02:56:08.905937+0000 mon.smithi152 (mon.0) 540 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:10.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:09 smithi152 bash[16344]: audit 2024-01-24T02:56:09.347370+0000 mon.smithi152 (mon.0) 541 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:10.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: cephadm 2024-01-24T02:56:08.896592+0000 mgr.smithi152.jkoscf (mgr.14182) 115 : cephadm [INF] Adjusting osd_memory_target on smithi195 to 3785M 2024-01-24T02:56:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: cluster 2024-01-24T02:56:09.089751+0000 mgr.smithi152.jkoscf (mgr.14182) 116 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: cephadm 2024-01-24T02:56:09.336421+0000 mgr.smithi152.jkoscf (mgr.14182) 117 : cephadm [INF] Detected new or changed devices on smithi152 2024-01-24T02:56:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.650818+0000 mon.smithi152 (mon.0) 542 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.653266+0000 mon.smithi152 (mon.0) 543 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.654946+0000 mon.smithi152 (mon.0) 544 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.656531+0000 mon.smithi152 (mon.0) 545 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.658318+0000 mon.smithi152 (mon.0) 546 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.665424+0000 mon.smithi152 (mon.0) 547 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.667849+0000 mon.smithi152 (mon.0) 548 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:56:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.669308+0000 mon.smithi152 (mon.0) 549 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T02:56:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.677541+0000 mon.smithi152 (mon.0) 550 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.686071+0000 mon.smithi152 (mon.0) 551 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T02:56:10.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.693373+0000 mon.smithi152 (mon.0) 552 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-24T02:56:10.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.696609+0000 mon.smithi152 (mon.0) 553 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-24T02:56:10.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.696969+0000 mon.smithi152 (mon.0) 554 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:56:10.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:10 smithi195 bash[19846]: audit 2024-01-24T02:56:09.698029+0000 mon.smithi152 (mon.0) 555 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:56:11.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: cephadm 2024-01-24T02:56:08.896592+0000 mgr.smithi152.jkoscf (mgr.14182) 115 : cephadm [INF] Adjusting osd_memory_target on smithi195 to 3785M 2024-01-24T02:56:11.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: cluster 2024-01-24T02:56:09.089751+0000 mgr.smithi152.jkoscf (mgr.14182) 116 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:11.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: cephadm 2024-01-24T02:56:09.336421+0000 mgr.smithi152.jkoscf (mgr.14182) 117 : cephadm [INF] Detected new or changed devices on smithi152 2024-01-24T02:56:11.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.650818+0000 mon.smithi152 (mon.0) 542 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:11.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.653266+0000 mon.smithi152 (mon.0) 543 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:11.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.654946+0000 mon.smithi152 (mon.0) 544 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:11.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.656531+0000 mon.smithi152 (mon.0) 545 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:11.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.658318+0000 mon.smithi152 (mon.0) 546 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-01-24T02:56:11.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.665424+0000 mon.smithi152 (mon.0) 547 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:11.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.667849+0000 mon.smithi152 (mon.0) 548 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:56:11.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.669308+0000 mon.smithi152 (mon.0) 549 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T02:56:11.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.677541+0000 mon.smithi152 (mon.0) 550 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:11.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.686071+0000 mon.smithi152 (mon.0) 551 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T02:56:11.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.693373+0000 mon.smithi152 (mon.0) 552 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-24T02:56:11.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.696609+0000 mon.smithi152 (mon.0) 553 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-24T02:56:11.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.696969+0000 mon.smithi152 (mon.0) 554 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:56:11.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:10 smithi152 bash[16344]: audit 2024-01-24T02:56:09.698029+0000 mon.smithi152 (mon.0) 555 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:56:11.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:11 smithi195 bash[19846]: cephadm 2024-01-24T02:56:09.659628+0000 mgr.smithi152.jkoscf (mgr.14182) 118 : cephadm [INF] Adjusting osd_memory_target on smithi152 to 3529M 2024-01-24T02:56:12.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:11 smithi152 bash[16344]: cephadm 2024-01-24T02:56:09.659628+0000 mgr.smithi152.jkoscf (mgr.14182) 118 : cephadm [INF] Adjusting osd_memory_target on smithi152 to 3529M 2024-01-24T02:56:12.685 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:56:12.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:12 smithi195 bash[19846]: cluster 2024-01-24T02:56:11.090546+0000 mgr.smithi152.jkoscf (mgr.14182) 119 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:13.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:12 smithi152 bash[16344]: cluster 2024-01-24T02:56:11.090546+0000 mgr.smithi152.jkoscf (mgr.14182) 119 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:14.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:14 smithi195 bash[19846]: cluster 2024-01-24T02:56:13.091209+0000 mgr.smithi152.jkoscf (mgr.14182) 120 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:15.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:14 smithi152 bash[16344]: cluster 2024-01-24T02:56:13.091209+0000 mgr.smithi152.jkoscf (mgr.14182) 120 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:16.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:16 smithi152 bash[16344]: cluster 2024-01-24T02:56:15.091839+0000 mgr.smithi152.jkoscf (mgr.14182) 121 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:16.951 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:56:16.951 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":39,"fsid":"676f9788-ba63-11ee-95b1-87774f69a715","created":"2024-01-24T02:51:36.709825+0000","modified":"2024-01-24T02:55:30.120594+0000","last_up_change":"2024-01-24T02:55:28.106665+0000","last_in_change":"2024-01-24T02:54:39.969769+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-01-24T02:55:10.040003+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"23","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"21e10507-d08d-41af-9de7-b9a1a0b8769e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6800","nonce":2490905},{"type":"v1","addr":"172.21.15.195:6801","nonce":2490905}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6802","nonce":2490905},{"type":"v1","addr":"172.21.15.195:6803","nonce":2490905}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6806","nonce":2490905},{"type":"v1","addr":"172.21.15.195:6807","nonce":2490905}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6804","nonce":2490905},{"type":"v1","addr":"172.21.15.195:6805","nonce":2490905}]},"public_addr":"172.21.15.195:6801/2490905","cluster_addr":"172.21.15.195:6803/2490905","heartbeat_back_addr":"172.21.15.195:6807/2490905","heartbeat_front_addr":"172.21.15.195:6805/2490905","state":["exists","up"]},{"osd":1,"uuid":"f68c6b3d-d0bd-455e-b7ff-5370a83c7a7c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6802","nonce":3034004976},{"type":"v1","addr":"172.21.15.152:6803","nonce":3034004976}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6804","nonce":3034004976},{"type":"v1","addr":"172.21.15.152:6805","nonce":3034004976}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6808","nonce":3034004976},{"type":"v1","addr":"172.21.15.152:6809","nonce":3034004976}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6806","nonce":3034004976},{"type":"v1","addr":"172.21.15.152:6807","nonce":3034004976}]},"public_addr":"172.21.15.152:6803/3034004976","cluster_addr":"172.21.15.152:6805/3034004976","heartbeat_back_addr":"172.21.15.152:6809/3034004976","heartbeat_front_addr":"172.21.15.152:6807/3034004976","state":["exists","up"]},{"osd":2,"uuid":"8956ac53-b604-4add-a140-c3702482222a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6808","nonce":1871178635},{"type":"v1","addr":"172.21.15.195:6809","nonce":1871178635}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6810","nonce":1871178635},{"type":"v1","addr":"172.21.15.195:6811","nonce":1871178635}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6814","nonce":1871178635},{"type":"v1","addr":"172.21.15.195:6815","nonce":1871178635}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6812","nonce":1871178635},{"type":"v1","addr":"172.21.15.195:6813","nonce":1871178635}]},"public_addr":"172.21.15.195:6809/1871178635","cluster_addr":"172.21.15.195:6811/1871178635","heartbeat_back_addr":"172.21.15.195:6815/1871178635","heartbeat_front_addr":"172.21.15.195:6813/1871178635","state":["exists","up"]},{"osd":3,"uuid":"391cc68d-47c9-4281-8b79-761599f03bb2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6810","nonce":3162430233},{"type":"v1","addr":"172.21.15.152:6811","nonce":3162430233}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6812","nonce":3162430233},{"type":"v1","addr":"172.21.15.152:6813","nonce":3162430233}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6816","nonce":3162430233},{"type":"v1","addr":"172.21.15.152:6817","nonce":3162430233}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6814","nonce":3162430233},{"type":"v1","addr":"172.21.15.152:6815","nonce":3162430233}]},"public_addr":"172.21.15.152:6811/3162430233","cluster_addr":"172.21.15.152:6813/3162430233","heartbeat_back_addr":"172.21.15.152:6817/3162430233","heartbeat_front_addr":"172.21.15.152:6815/3162430233","state":["exists","up"]},{"osd":4,"uuid":"2ca476b4-dbd2-48fe-b87b-256a6762bee4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6816","nonce":637602785},{"type":"v1","addr":"172.21.15.195:6817","nonce":637602785}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6818","nonce":637602785},{"type":"v1","addr":"172.21.15.195:6819","nonce":637602785}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6822","nonce":637602785},{"type":"v1","addr":"172.21.15.195:6823","nonce":637602785}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6820","nonce":637602785},{"type":"v1","addr":"172.21.15.195:6821","nonce":637602785}]},"public_addr":"172.21.15.195:6817/637602785","cluster_addr":"172.21.15.195:6819/637602785","heartbeat_back_addr":"172.21.15.195:6823/637602785","heartbeat_front_addr":"172.21.15.195:6821/637602785","state":["exists","up"]},{"osd":5,"uuid":"beb2417b-faaf-4c72-b58b-7245024af5b5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6818","nonce":2566076046},{"type":"v1","addr":"172.21.15.152:6819","nonce":2566076046}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6820","nonce":2566076046},{"type":"v1","addr":"172.21.15.152:6821","nonce":2566076046}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6824","nonce":2566076046},{"type":"v1","addr":"172.21.15.152:6825","nonce":2566076046}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6822","nonce":2566076046},{"type":"v1","addr":"172.21.15.152:6823","nonce":2566076046}]},"public_addr":"172.21.15.152:6819/2566076046","cluster_addr":"172.21.15.152:6821/2566076046","heartbeat_back_addr":"172.21.15.152:6825/2566076046","heartbeat_front_addr":"172.21.15.152:6823/2566076046","state":["exists","up"]},{"osd":6,"uuid":"77577e7b-2890-4666-a72a-d488d6d7da7b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6824","nonce":1260107478},{"type":"v1","addr":"172.21.15.195:6825","nonce":1260107478}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6826","nonce":1260107478},{"type":"v1","addr":"172.21.15.195:6827","nonce":1260107478}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6830","nonce":1260107478},{"type":"v1","addr":"172.21.15.195:6831","nonce":1260107478}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6828","nonce":1260107478},{"type":"v1","addr":"172.21.15.195:6829","nonce":1260107478}]},"public_addr":"172.21.15.195:6825/1260107478","cluster_addr":"172.21.15.195:6827/1260107478","heartbeat_back_addr":"172.21.15.195:6831/1260107478","heartbeat_front_addr":"172.21.15.195:6829/1260107478","state":["exists","up"]},{"osd":7,"uuid":"c801747f-6eb0-4277-9d33-333fd642167b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6826","nonce":2151467856},{"type":"v1","addr":"172.21.15.152:6827","nonce":2151467856}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6828","nonce":2151467856},{"type":"v1","addr":"172.21.15.152:6829","nonce":2151467856}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6832","nonce":2151467856},{"type":"v1","addr":"172.21.15.152:6833","nonce":2151467856}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6830","nonce":2151467856},{"type":"v1","addr":"172.21.15.152:6831","nonce":2151467856}]},"public_addr":"172.21.15.152:6827/2151467856","cluster_addr":"172.21.15.152:6829/2151467856","heartbeat_back_addr":"172.21.15.152:6833/2151467856","heartbeat_front_addr":"172.21.15.152:6831/2151467856","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:03.025977+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:08.306435+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:07.994963+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:14.761039+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:13.021358+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:21.302577+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:17.015928+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:26.695557+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.152:6800/3611135937":"2024-01-25T02:53:39.040243+0000","172.21.15.152:0/2944905240":"2024-01-25T02:53:39.040243+0000","172.21.15.152:0/3525882027":"2024-01-25T02:52:43.660331+0000","172.21.15.152:6801/3611135937":"2024-01-25T02:53:39.040243+0000","172.21.15.152:6801/3019871099":"2024-01-25T02:52:43.660331+0000","172.21.15.152:0/3887487151":"2024-01-25T02:53:39.040243+0000","172.21.15.152:0/524426085":"2024-01-25T02:52:43.660331+0000","172.21.15.152:6800/3077167777":"2024-01-25T02:52:04.164188+0000","172.21.15.152:6801/3077167777":"2024-01-25T02:52:04.164188+0000","172.21.15.152:6800/3019871099":"2024-01-25T02:52:43.660331+0000","172.21.15.152:0/1924332518":"2024-01-25T02:52:04.164188+0000","172.21.15.152:0/1655928565":"2024-01-25T02:52:04.164188+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-01-24T02:56:16.983 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:16 smithi195 bash[19846]: cluster 2024-01-24T02:56:15.091839+0000 mgr.smithi152.jkoscf (mgr.14182) 121 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:17.695 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-01-24T02:56:17.695 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd dump --format=json 2024-01-24T02:56:17.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:17 smithi195 bash[19846]: audit 2024-01-24T02:56:16.949034+0000 mon.smithi152 (mon.0) 556 : audit [DBG] from='client.? 172.21.15.152:0/1680330478' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-24T02:56:18.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:17 smithi152 bash[16344]: audit 2024-01-24T02:56:16.949034+0000 mon.smithi152 (mon.0) 556 : audit [DBG] from='client.? 172.21.15.152:0/1680330478' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-24T02:56:18.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:18 smithi195 bash[19846]: cluster 2024-01-24T02:56:17.092507+0000 mgr.smithi152.jkoscf (mgr.14182) 122 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:19.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:18 smithi152 bash[16344]: cluster 2024-01-24T02:56:17.092507+0000 mgr.smithi152.jkoscf (mgr.14182) 122 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:19.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:19 smithi195 bash[19846]: cluster 2024-01-24T02:56:19.093161+0000 mgr.smithi152.jkoscf (mgr.14182) 123 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:20.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:19 smithi152 bash[16344]: cluster 2024-01-24T02:56:19.093161+0000 mgr.smithi152.jkoscf (mgr.14182) 123 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:22.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:22 smithi195 bash[19846]: cluster 2024-01-24T02:56:21.093799+0000 mgr.smithi152.jkoscf (mgr.14182) 124 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:22.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:22 smithi152 bash[16344]: cluster 2024-01-24T02:56:21.093799+0000 mgr.smithi152.jkoscf (mgr.14182) 124 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:23.065 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:56:24.316 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:24 smithi152 bash[16344]: cluster 2024-01-24T02:56:23.094466+0000 mgr.smithi152.jkoscf (mgr.14182) 125 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:24.427 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:24 smithi195 bash[19846]: cluster 2024-01-24T02:56:23.094466+0000 mgr.smithi152.jkoscf (mgr.14182) 125 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:26.462 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:26 smithi152 bash[16344]: cluster 2024-01-24T02:56:25.094894+0000 mgr.smithi152.jkoscf (mgr.14182) 126 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:26.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:26 smithi195 bash[19846]: cluster 2024-01-24T02:56:25.094894+0000 mgr.smithi152.jkoscf (mgr.14182) 126 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:26.913 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:56:26.913 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":39,"fsid":"676f9788-ba63-11ee-95b1-87774f69a715","created":"2024-01-24T02:51:36.709825+0000","modified":"2024-01-24T02:55:30.120594+0000","last_up_change":"2024-01-24T02:55:28.106665+0000","last_in_change":"2024-01-24T02:54:39.969769+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-01-24T02:55:10.040003+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"23","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"21e10507-d08d-41af-9de7-b9a1a0b8769e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6800","nonce":2490905},{"type":"v1","addr":"172.21.15.195:6801","nonce":2490905}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6802","nonce":2490905},{"type":"v1","addr":"172.21.15.195:6803","nonce":2490905}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6806","nonce":2490905},{"type":"v1","addr":"172.21.15.195:6807","nonce":2490905}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6804","nonce":2490905},{"type":"v1","addr":"172.21.15.195:6805","nonce":2490905}]},"public_addr":"172.21.15.195:6801/2490905","cluster_addr":"172.21.15.195:6803/2490905","heartbeat_back_addr":"172.21.15.195:6807/2490905","heartbeat_front_addr":"172.21.15.195:6805/2490905","state":["exists","up"]},{"osd":1,"uuid":"f68c6b3d-d0bd-455e-b7ff-5370a83c7a7c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6802","nonce":3034004976},{"type":"v1","addr":"172.21.15.152:6803","nonce":3034004976}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6804","nonce":3034004976},{"type":"v1","addr":"172.21.15.152:6805","nonce":3034004976}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6808","nonce":3034004976},{"type":"v1","addr":"172.21.15.152:6809","nonce":3034004976}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6806","nonce":3034004976},{"type":"v1","addr":"172.21.15.152:6807","nonce":3034004976}]},"public_addr":"172.21.15.152:6803/3034004976","cluster_addr":"172.21.15.152:6805/3034004976","heartbeat_back_addr":"172.21.15.152:6809/3034004976","heartbeat_front_addr":"172.21.15.152:6807/3034004976","state":["exists","up"]},{"osd":2,"uuid":"8956ac53-b604-4add-a140-c3702482222a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6808","nonce":1871178635},{"type":"v1","addr":"172.21.15.195:6809","nonce":1871178635}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6810","nonce":1871178635},{"type":"v1","addr":"172.21.15.195:6811","nonce":1871178635}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6814","nonce":1871178635},{"type":"v1","addr":"172.21.15.195:6815","nonce":1871178635}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6812","nonce":1871178635},{"type":"v1","addr":"172.21.15.195:6813","nonce":1871178635}]},"public_addr":"172.21.15.195:6809/1871178635","cluster_addr":"172.21.15.195:6811/1871178635","heartbeat_back_addr":"172.21.15.195:6815/1871178635","heartbeat_front_addr":"172.21.15.195:6813/1871178635","state":["exists","up"]},{"osd":3,"uuid":"391cc68d-47c9-4281-8b79-761599f03bb2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6810","nonce":3162430233},{"type":"v1","addr":"172.21.15.152:6811","nonce":3162430233}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6812","nonce":3162430233},{"type":"v1","addr":"172.21.15.152:6813","nonce":3162430233}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6816","nonce":3162430233},{"type":"v1","addr":"172.21.15.152:6817","nonce":3162430233}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6814","nonce":3162430233},{"type":"v1","addr":"172.21.15.152:6815","nonce":3162430233}]},"public_addr":"172.21.15.152:6811/3162430233","cluster_addr":"172.21.15.152:6813/3162430233","heartbeat_back_addr":"172.21.15.152:6817/3162430233","heartbeat_front_addr":"172.21.15.152:6815/3162430233","state":["exists","up"]},{"osd":4,"uuid":"2ca476b4-dbd2-48fe-b87b-256a6762bee4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6816","nonce":637602785},{"type":"v1","addr":"172.21.15.195:6817","nonce":637602785}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6818","nonce":637602785},{"type":"v1","addr":"172.21.15.195:6819","nonce":637602785}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6822","nonce":637602785},{"type":"v1","addr":"172.21.15.195:6823","nonce":637602785}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6820","nonce":637602785},{"type":"v1","addr":"172.21.15.195:6821","nonce":637602785}]},"public_addr":"172.21.15.195:6817/637602785","cluster_addr":"172.21.15.195:6819/637602785","heartbeat_back_addr":"172.21.15.195:6823/637602785","heartbeat_front_addr":"172.21.15.195:6821/637602785","state":["exists","up"]},{"osd":5,"uuid":"beb2417b-faaf-4c72-b58b-7245024af5b5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6818","nonce":2566076046},{"type":"v1","addr":"172.21.15.152:6819","nonce":2566076046}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6820","nonce":2566076046},{"type":"v1","addr":"172.21.15.152:6821","nonce":2566076046}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6824","nonce":2566076046},{"type":"v1","addr":"172.21.15.152:6825","nonce":2566076046}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6822","nonce":2566076046},{"type":"v1","addr":"172.21.15.152:6823","nonce":2566076046}]},"public_addr":"172.21.15.152:6819/2566076046","cluster_addr":"172.21.15.152:6821/2566076046","heartbeat_back_addr":"172.21.15.152:6825/2566076046","heartbeat_front_addr":"172.21.15.152:6823/2566076046","state":["exists","up"]},{"osd":6,"uuid":"77577e7b-2890-4666-a72a-d488d6d7da7b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6824","nonce":1260107478},{"type":"v1","addr":"172.21.15.195:6825","nonce":1260107478}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6826","nonce":1260107478},{"type":"v1","addr":"172.21.15.195:6827","nonce":1260107478}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6830","nonce":1260107478},{"type":"v1","addr":"172.21.15.195:6831","nonce":1260107478}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6828","nonce":1260107478},{"type":"v1","addr":"172.21.15.195:6829","nonce":1260107478}]},"public_addr":"172.21.15.195:6825/1260107478","cluster_addr":"172.21.15.195:6827/1260107478","heartbeat_back_addr":"172.21.15.195:6831/1260107478","heartbeat_front_addr":"172.21.15.195:6829/1260107478","state":["exists","up"]},{"osd":7,"uuid":"c801747f-6eb0-4277-9d33-333fd642167b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6826","nonce":2151467856},{"type":"v1","addr":"172.21.15.152:6827","nonce":2151467856}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6828","nonce":2151467856},{"type":"v1","addr":"172.21.15.152:6829","nonce":2151467856}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6832","nonce":2151467856},{"type":"v1","addr":"172.21.15.152:6833","nonce":2151467856}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6830","nonce":2151467856},{"type":"v1","addr":"172.21.15.152:6831","nonce":2151467856}]},"public_addr":"172.21.15.152:6827/2151467856","cluster_addr":"172.21.15.152:6829/2151467856","heartbeat_back_addr":"172.21.15.152:6833/2151467856","heartbeat_front_addr":"172.21.15.152:6831/2151467856","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:03.025977+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:08.306435+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:07.994963+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:14.761039+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:13.021358+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:21.302577+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:17.015928+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-24T02:55:26.695557+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.152:6800/3611135937":"2024-01-25T02:53:39.040243+0000","172.21.15.152:0/2944905240":"2024-01-25T02:53:39.040243+0000","172.21.15.152:0/3525882027":"2024-01-25T02:52:43.660331+0000","172.21.15.152:6801/3611135937":"2024-01-25T02:53:39.040243+0000","172.21.15.152:6801/3019871099":"2024-01-25T02:52:43.660331+0000","172.21.15.152:0/3887487151":"2024-01-25T02:53:39.040243+0000","172.21.15.152:0/524426085":"2024-01-25T02:52:43.660331+0000","172.21.15.152:6800/3077167777":"2024-01-25T02:52:04.164188+0000","172.21.15.152:6801/3077167777":"2024-01-25T02:52:04.164188+0000","172.21.15.152:6800/3019871099":"2024-01-25T02:52:43.660331+0000","172.21.15.152:0/1924332518":"2024-01-25T02:52:04.164188+0000","172.21.15.152:0/1655928565":"2024-01-25T02:52:04.164188+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-01-24T02:56:27.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:27 smithi152 bash[16344]: audit 2024-01-24T02:56:26.911595+0000 mon.smithi152 (mon.0) 557 : audit [DBG] from='client.? 172.21.15.152:0/3435131373' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-24T02:56:27.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:27 smithi195 bash[19846]: audit 2024-01-24T02:56:26.911595+0000 mon.smithi152 (mon.0) 557 : audit [DBG] from='client.? 172.21.15.152:0/3435131373' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-24T02:56:27.891 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2024-01-24T02:56:28.456 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:28 smithi152 bash[16344]: cluster 2024-01-24T02:56:27.095461+0000 mgr.smithi152.jkoscf (mgr.14182) 127 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:28.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:28 smithi195 bash[19846]: cluster 2024-01-24T02:56:27.095461+0000 mgr.smithi152.jkoscf (mgr.14182) 127 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:30.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:30 smithi195 bash[19846]: cluster 2024-01-24T02:56:29.096166+0000 mgr.smithi152.jkoscf (mgr.14182) 128 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:30.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:30 smithi152 bash[16344]: cluster 2024-01-24T02:56:29.096166+0000 mgr.smithi152.jkoscf (mgr.14182) 128 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:32.437 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:32 smithi195 bash[19846]: cluster 2024-01-24T02:56:31.096835+0000 mgr.smithi152.jkoscf (mgr.14182) 129 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:32.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:32 smithi152 bash[16344]: cluster 2024-01-24T02:56:31.096835+0000 mgr.smithi152.jkoscf (mgr.14182) 129 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:32.749 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:56:34.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:34 smithi195 bash[19846]: cluster 2024-01-24T02:56:33.097444+0000 mgr.smithi152.jkoscf (mgr.14182) 130 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:34.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:34 smithi152 bash[16344]: cluster 2024-01-24T02:56:33.097444+0000 mgr.smithi152.jkoscf (mgr.14182) 130 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:36.736 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:36 smithi152 bash[16344]: cluster 2024-01-24T02:56:35.098067+0000 mgr.smithi152.jkoscf (mgr.14182) 131 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:36.736 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:36 smithi152 bash[16344]: audit 2024-01-24T02:56:35.459840+0000 mon.smithi152 (mon.0) 558 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:36.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:36 smithi195 bash[19846]: cluster 2024-01-24T02:56:35.098067+0000 mgr.smithi152.jkoscf (mgr.14182) 131 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:36.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:36 smithi195 bash[19846]: audit 2024-01-24T02:56:35.459840+0000 mon.smithi152 (mon.0) 558 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:37.571 INFO:teuthology.orchestra.run.smithi152.stdout:68719476757 2024-01-24T02:56:37.571 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2024-01-24T02:56:38.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:38 smithi195 bash[19846]: cluster 2024-01-24T02:56:37.098686+0000 mgr.smithi152.jkoscf (mgr.14182) 132 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:38.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:38 smithi152 bash[16344]: cluster 2024-01-24T02:56:37.098686+0000 mgr.smithi152.jkoscf (mgr.14182) 132 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:40.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:40 smithi152 bash[16344]: audit 2024-01-24T02:56:39.065882+0000 mon.smithi152 (mon.0) 559 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:40.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:40 smithi152 bash[16344]: audit 2024-01-24T02:56:39.069154+0000 mon.smithi152 (mon.0) 560 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:56:40.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:40 smithi152 bash[16344]: cluster 2024-01-24T02:56:39.099348+0000 mgr.smithi152.jkoscf (mgr.14182) 133 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:40 smithi195 bash[19846]: audit 2024-01-24T02:56:39.065882+0000 mon.smithi152 (mon.0) 559 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:40 smithi195 bash[19846]: audit 2024-01-24T02:56:39.069154+0000 mon.smithi152 (mon.0) 560 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:56:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:40 smithi195 bash[19846]: cluster 2024-01-24T02:56:39.099348+0000 mgr.smithi152.jkoscf (mgr.14182) 133 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:42.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:42 smithi195 bash[19846]: cluster 2024-01-24T02:56:41.099919+0000 mgr.smithi152.jkoscf (mgr.14182) 134 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:42.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:42 smithi152 bash[16344]: cluster 2024-01-24T02:56:41.099919+0000 mgr.smithi152.jkoscf (mgr.14182) 134 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:42.619 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:56:44.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:44 smithi195 bash[19846]: cluster 2024-01-24T02:56:43.100526+0000 mgr.smithi152.jkoscf (mgr.14182) 135 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:44.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:44 smithi152 bash[16344]: cluster 2024-01-24T02:56:43.100526+0000 mgr.smithi152.jkoscf (mgr.14182) 135 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:46.035 INFO:teuthology.orchestra.run.smithi152.stdout:85899345941 2024-01-24T02:56:46.036 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2024-01-24T02:56:46.047 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:45 smithi152 bash[16344]: audit 2024-01-24T02:56:44.790349+0000 mon.smithi152 (mon.0) 561 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:46.047 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:45 smithi152 bash[16344]: audit 2024-01-24T02:56:44.924198+0000 mon.smithi152 (mon.0) 562 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:46.048 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:45 smithi152 bash[16344]: audit 2024-01-24T02:56:44.926400+0000 mon.smithi152 (mon.0) 563 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:56:46.048 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:45 smithi152 bash[16344]: audit 2024-01-24T02:56:44.928151+0000 mon.smithi152 (mon.0) 564 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T02:56:46.048 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:45 smithi152 bash[16344]: audit 2024-01-24T02:56:44.936301+0000 mon.smithi152 (mon.0) 565 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:46.048 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:45 smithi152 bash[16344]: audit 2024-01-24T02:56:44.942392+0000 mon.smithi152 (mon.0) 566 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T02:56:46.048 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:45 smithi152 bash[16344]: cluster 2024-01-24T02:56:45.101116+0000 mgr.smithi152.jkoscf (mgr.14182) 136 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:46.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:45 smithi195 bash[19846]: audit 2024-01-24T02:56:44.790349+0000 mon.smithi152 (mon.0) 561 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:46.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:45 smithi195 bash[19846]: audit 2024-01-24T02:56:44.924198+0000 mon.smithi152 (mon.0) 562 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:46.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:45 smithi195 bash[19846]: audit 2024-01-24T02:56:44.926400+0000 mon.smithi152 (mon.0) 563 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:56:46.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:45 smithi195 bash[19846]: audit 2024-01-24T02:56:44.928151+0000 mon.smithi152 (mon.0) 564 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T02:56:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:45 smithi195 bash[19846]: audit 2024-01-24T02:56:44.936301+0000 mon.smithi152 (mon.0) 565 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:56:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:45 smithi195 bash[19846]: audit 2024-01-24T02:56:44.942392+0000 mon.smithi152 (mon.0) 566 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T02:56:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:45 smithi195 bash[19846]: cluster 2024-01-24T02:56:45.101116+0000 mgr.smithi152.jkoscf (mgr.14182) 136 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:48.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:48 smithi195 bash[19846]: cluster 2024-01-24T02:56:47.101674+0000 mgr.smithi152.jkoscf (mgr.14182) 137 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:48.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:48 smithi152 bash[16344]: cluster 2024-01-24T02:56:47.101674+0000 mgr.smithi152.jkoscf (mgr.14182) 137 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:50.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:50 smithi195 bash[19846]: cluster 2024-01-24T02:56:49.102294+0000 mgr.smithi152.jkoscf (mgr.14182) 138 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:50.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:50 smithi152 bash[16344]: cluster 2024-01-24T02:56:49.102294+0000 mgr.smithi152.jkoscf (mgr.14182) 138 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:50.871 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:56:52.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:52 smithi195 bash[19846]: cluster 2024-01-24T02:56:51.102866+0000 mgr.smithi152.jkoscf (mgr.14182) 139 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:52.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:52 smithi152 bash[16344]: cluster 2024-01-24T02:56:51.102866+0000 mgr.smithi152.jkoscf (mgr.14182) 139 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:54.264 INFO:teuthology.orchestra.run.smithi152.stdout:85899345944 2024-01-24T02:56:54.264 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2024-01-24T02:56:54.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:54 smithi195 bash[19846]: cluster 2024-01-24T02:56:53.103436+0000 mgr.smithi152.jkoscf (mgr.14182) 140 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:54.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:54 smithi152 bash[16344]: cluster 2024-01-24T02:56:53.103436+0000 mgr.smithi152.jkoscf (mgr.14182) 140 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:56.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:56 smithi195 bash[19846]: cluster 2024-01-24T02:56:55.104047+0000 mgr.smithi152.jkoscf (mgr.14182) 141 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:56.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:56 smithi152 bash[16344]: cluster 2024-01-24T02:56:55.104047+0000 mgr.smithi152.jkoscf (mgr.14182) 141 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:58.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:56:58 smithi195 bash[19846]: cluster 2024-01-24T02:56:57.104629+0000 mgr.smithi152.jkoscf (mgr.14182) 142 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:58.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:56:58 smithi152 bash[16344]: cluster 2024-01-24T02:56:57.104629+0000 mgr.smithi152.jkoscf (mgr.14182) 142 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:56:59.148 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:57:00.315 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:00 smithi152 bash[16344]: cluster 2024-01-24T02:56:59.105203+0000 mgr.smithi152.jkoscf (mgr.14182) 143 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:00.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:00 smithi195 bash[19846]: cluster 2024-01-24T02:56:59.105203+0000 mgr.smithi152.jkoscf (mgr.14182) 143 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:02.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:02 smithi152 bash[16344]: cluster 2024-01-24T02:57:01.105791+0000 mgr.smithi152.jkoscf (mgr.14182) 144 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:02.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:02 smithi195 bash[19846]: cluster 2024-01-24T02:57:01.105791+0000 mgr.smithi152.jkoscf (mgr.14182) 144 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:02.508 INFO:teuthology.orchestra.run.smithi152.stdout:115964117016 2024-01-24T02:57:02.508 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2024-01-24T02:57:04.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:04 smithi195 bash[19846]: cluster 2024-01-24T02:57:03.106427+0000 mgr.smithi152.jkoscf (mgr.14182) 145 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:04.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:04 smithi152 bash[16344]: cluster 2024-01-24T02:57:03.106427+0000 mgr.smithi152.jkoscf (mgr.14182) 145 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:06.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:06 smithi195 bash[19846]: cluster 2024-01-24T02:57:05.107035+0000 mgr.smithi152.jkoscf (mgr.14182) 146 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:06.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:06 smithi152 bash[16344]: cluster 2024-01-24T02:57:05.107035+0000 mgr.smithi152.jkoscf (mgr.14182) 146 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:07.351 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:57:08.445 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:08 smithi152 bash[16344]: cluster 2024-01-24T02:57:07.107591+0000 mgr.smithi152.jkoscf (mgr.14182) 147 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:08.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:08 smithi195 bash[19846]: cluster 2024-01-24T02:57:07.107591+0000 mgr.smithi152.jkoscf (mgr.14182) 147 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:10.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:10 smithi152 bash[16344]: cluster 2024-01-24T02:57:09.108164+0000 mgr.smithi152.jkoscf (mgr.14182) 148 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:10.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:10 smithi195 bash[19846]: cluster 2024-01-24T02:57:09.108164+0000 mgr.smithi152.jkoscf (mgr.14182) 148 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:10.611 INFO:teuthology.orchestra.run.smithi152.stdout:107374182426 2024-01-24T02:57:10.611 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2024-01-24T02:57:12.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:12 smithi195 bash[19846]: cluster 2024-01-24T02:57:11.108730+0000 mgr.smithi152.jkoscf (mgr.14182) 149 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:12.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:12 smithi152 bash[16344]: cluster 2024-01-24T02:57:11.108730+0000 mgr.smithi152.jkoscf (mgr.14182) 149 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:14.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:14 smithi195 bash[19846]: cluster 2024-01-24T02:57:13.109307+0000 mgr.smithi152.jkoscf (mgr.14182) 150 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:14.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:14 smithi152 bash[16344]: cluster 2024-01-24T02:57:13.109307+0000 mgr.smithi152.jkoscf (mgr.14182) 150 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:15.456 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:57:16.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:16 smithi195 bash[19846]: cluster 2024-01-24T02:57:15.109859+0000 mgr.smithi152.jkoscf (mgr.14182) 151 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:16.506 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:16 smithi152 bash[16344]: cluster 2024-01-24T02:57:15.109859+0000 mgr.smithi152.jkoscf (mgr.14182) 151 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:18.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:18 smithi195 bash[19846]: cluster 2024-01-24T02:57:17.110506+0000 mgr.smithi152.jkoscf (mgr.14182) 152 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:18.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:18 smithi152 bash[16344]: cluster 2024-01-24T02:57:17.110506+0000 mgr.smithi152.jkoscf (mgr.14182) 152 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:18.843 INFO:teuthology.orchestra.run.smithi152.stdout:141733920794 2024-01-24T02:57:18.843 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2024-01-24T02:57:20.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:20 smithi195 bash[19846]: cluster 2024-01-24T02:57:19.111121+0000 mgr.smithi152.jkoscf (mgr.14182) 153 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:20.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:20 smithi152 bash[16344]: cluster 2024-01-24T02:57:19.111121+0000 mgr.smithi152.jkoscf (mgr.14182) 153 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:22.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:22 smithi152 bash[16344]: cluster 2024-01-24T02:57:21.111744+0000 mgr.smithi152.jkoscf (mgr.14182) 154 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:22.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:22 smithi195 bash[19846]: cluster 2024-01-24T02:57:21.111744+0000 mgr.smithi152.jkoscf (mgr.14182) 154 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:23.683 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:57:24.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:24 smithi152 bash[16344]: cluster 2024-01-24T02:57:23.112411+0000 mgr.smithi152.jkoscf (mgr.14182) 155 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:24.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:24 smithi195 bash[19846]: cluster 2024-01-24T02:57:23.112411+0000 mgr.smithi152.jkoscf (mgr.14182) 155 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:26.497 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:26 smithi152 bash[16344]: cluster 2024-01-24T02:57:25.113027+0000 mgr.smithi152.jkoscf (mgr.14182) 156 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:26.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:26 smithi195 bash[19846]: cluster 2024-01-24T02:57:25.113027+0000 mgr.smithi152.jkoscf (mgr.14182) 156 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:27.061 INFO:teuthology.orchestra.run.smithi152.stdout:124554051611 2024-01-24T02:57:27.062 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2024-01-24T02:57:28.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:28 smithi152 bash[16344]: cluster 2024-01-24T02:57:27.113575+0000 mgr.smithi152.jkoscf (mgr.14182) 157 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:28.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:28 smithi195 bash[19846]: cluster 2024-01-24T02:57:27.113575+0000 mgr.smithi152.jkoscf (mgr.14182) 157 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:30.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:30 smithi195 bash[19846]: cluster 2024-01-24T02:57:29.114190+0000 mgr.smithi152.jkoscf (mgr.14182) 158 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:30.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:30 smithi152 bash[16344]: cluster 2024-01-24T02:57:29.114190+0000 mgr.smithi152.jkoscf (mgr.14182) 158 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:31.897 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:57:32.594 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:32 smithi152 bash[16344]: cluster 2024-01-24T02:57:31.114790+0000 mgr.smithi152.jkoscf (mgr.14182) 159 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:32.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:32 smithi195 bash[19846]: cluster 2024-01-24T02:57:31.114790+0000 mgr.smithi152.jkoscf (mgr.14182) 159 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:34.571 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:34 smithi152 bash[16344]: cluster 2024-01-24T02:57:33.115380+0000 mgr.smithi152.jkoscf (mgr.14182) 160 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:34.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:34 smithi195 bash[19846]: cluster 2024-01-24T02:57:33.115380+0000 mgr.smithi152.jkoscf (mgr.14182) 160 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:35.423 INFO:teuthology.orchestra.run.smithi152.stdout:158913789980 2024-01-24T02:57:35.424 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd last-stat-seq osd.0 2024-01-24T02:57:36.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:36 smithi152 bash[16344]: cluster 2024-01-24T02:57:35.115975+0000 mgr.smithi152.jkoscf (mgr.14182) 161 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:36.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:36 smithi195 bash[19846]: cluster 2024-01-24T02:57:35.115975+0000 mgr.smithi152.jkoscf (mgr.14182) 161 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:38.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:38 smithi152 bash[16344]: cluster 2024-01-24T02:57:37.116540+0000 mgr.smithi152.jkoscf (mgr.14182) 162 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:38.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:38 smithi195 bash[19846]: cluster 2024-01-24T02:57:37.116540+0000 mgr.smithi152.jkoscf (mgr.14182) 162 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:40.257 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:57:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:40 smithi195 bash[19846]: cluster 2024-01-24T02:57:39.117112+0000 mgr.smithi152.jkoscf (mgr.14182) 163 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:40.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:40 smithi152 bash[16344]: cluster 2024-01-24T02:57:39.117112+0000 mgr.smithi152.jkoscf (mgr.14182) 163 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:42.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:42 smithi152 bash[16344]: cluster 2024-01-24T02:57:41.117705+0000 mgr.smithi152.jkoscf (mgr.14182) 164 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:42.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:42 smithi195 bash[19846]: cluster 2024-01-24T02:57:41.117705+0000 mgr.smithi152.jkoscf (mgr.14182) 164 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:43.277 INFO:teuthology.orchestra.run.smithi152.stdout:68719476770 2024-01-24T02:57:43.893 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476757 got 68719476770 for osd.0 2024-01-24T02:57:43.893 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd last-stat-seq osd.1 2024-01-24T02:57:44.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:44 smithi195 bash[19846]: cluster 2024-01-24T02:57:43.118237+0000 mgr.smithi152.jkoscf (mgr.14182) 165 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:44.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:44 smithi195 bash[19846]: audit 2024-01-24T02:57:43.276933+0000 mon.smithi152 (mon.0) 567 : audit [DBG] from='client.? 172.21.15.152:0/18053183' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-01-24T02:57:44.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:44 smithi152 bash[16344]: cluster 2024-01-24T02:57:43.118237+0000 mgr.smithi152.jkoscf (mgr.14182) 165 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:44.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:44 smithi152 bash[16344]: audit 2024-01-24T02:57:43.276933+0000 mon.smithi152 (mon.0) 567 : audit [DBG] from='client.? 172.21.15.152:0/18053183' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-01-24T02:57:45.429 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:45 smithi152 bash[16344]: audit 2024-01-24T02:57:44.951488+0000 mon.smithi152 (mon.0) 568 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:57:45.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:45 smithi195 bash[19846]: audit 2024-01-24T02:57:44.951488+0000 mon.smithi152 (mon.0) 568 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:57:46.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:46 smithi195 bash[19846]: cluster 2024-01-24T02:57:45.118894+0000 mgr.smithi152.jkoscf (mgr.14182) 166 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:46.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:46 smithi152 bash[16344]: cluster 2024-01-24T02:57:45.118894+0000 mgr.smithi152.jkoscf (mgr.14182) 166 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:48.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:48 smithi195 bash[19846]: cluster 2024-01-24T02:57:47.119503+0000 mgr.smithi152.jkoscf (mgr.14182) 167 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:48.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:48 smithi152 bash[16344]: cluster 2024-01-24T02:57:47.119503+0000 mgr.smithi152.jkoscf (mgr.14182) 167 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:48.731 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:57:50.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:50 smithi195 bash[19846]: cluster 2024-01-24T02:57:49.120059+0000 mgr.smithi152.jkoscf (mgr.14182) 168 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:50.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:50 smithi152 bash[16344]: cluster 2024-01-24T02:57:49.120059+0000 mgr.smithi152.jkoscf (mgr.14182) 168 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:51.851 INFO:teuthology.orchestra.run.smithi152.stdout:85899345954 2024-01-24T02:57:52.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:51 smithi152 bash[16344]: audit 2024-01-24T02:57:50.806250+0000 mon.smithi152 (mon.0) 569 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:57:52.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:51 smithi152 bash[16344]: audit 2024-01-24T02:57:50.961644+0000 mon.smithi152 (mon.0) 570 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:57:52.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:51 smithi152 bash[16344]: cluster 2024-01-24T02:57:51.120389+0000 mgr.smithi152.jkoscf (mgr.14182) 169 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:52.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:51 smithi152 bash[16344]: audit 2024-01-24T02:57:51.258813+0000 mon.smithi152 (mon.0) 571 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:57:52.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:51 smithi152 bash[16344]: audit 2024-01-24T02:57:51.259802+0000 mon.smithi152 (mon.0) 572 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T02:57:52.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:51 smithi152 bash[16344]: audit 2024-01-24T02:57:51.270543+0000 mon.smithi152 (mon.0) 573 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:57:52.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:51 smithi152 bash[16344]: audit 2024-01-24T02:57:51.279322+0000 mon.smithi152 (mon.0) 574 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T02:57:52.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:51 smithi195 bash[19846]: audit 2024-01-24T02:57:50.806250+0000 mon.smithi152 (mon.0) 569 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:57:52.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:51 smithi195 bash[19846]: audit 2024-01-24T02:57:50.961644+0000 mon.smithi152 (mon.0) 570 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:57:52.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:51 smithi195 bash[19846]: cluster 2024-01-24T02:57:51.120389+0000 mgr.smithi152.jkoscf (mgr.14182) 169 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:52.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:51 smithi195 bash[19846]: audit 2024-01-24T02:57:51.258813+0000 mon.smithi152 (mon.0) 571 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:57:52.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:51 smithi195 bash[19846]: audit 2024-01-24T02:57:51.259802+0000 mon.smithi152 (mon.0) 572 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T02:57:52.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:51 smithi195 bash[19846]: audit 2024-01-24T02:57:51.270543+0000 mon.smithi152 (mon.0) 573 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:57:52.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:51 smithi195 bash[19846]: audit 2024-01-24T02:57:51.279322+0000 mon.smithi152 (mon.0) 574 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T02:57:52.487 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345941 got 85899345954 for osd.1 2024-01-24T02:57:52.488 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd last-stat-seq osd.2 2024-01-24T02:57:53.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:52 smithi152 bash[16344]: audit 2024-01-24T02:57:51.850644+0000 mon.smithi152 (mon.0) 575 : audit [DBG] from='client.? 172.21.15.152:0/2361064586' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-01-24T02:57:53.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:52 smithi195 bash[19846]: audit 2024-01-24T02:57:51.850644+0000 mon.smithi152 (mon.0) 575 : audit [DBG] from='client.? 172.21.15.152:0/2361064586' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-01-24T02:57:54.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:54 smithi195 bash[19846]: cluster 2024-01-24T02:57:53.120904+0000 mgr.smithi152.jkoscf (mgr.14182) 170 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:54.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:54 smithi152 bash[16344]: cluster 2024-01-24T02:57:53.120904+0000 mgr.smithi152.jkoscf (mgr.14182) 170 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:56.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:56 smithi195 bash[19846]: cluster 2024-01-24T02:57:55.121531+0000 mgr.smithi152.jkoscf (mgr.14182) 171 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:56.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:56 smithi152 bash[16344]: cluster 2024-01-24T02:57:55.121531+0000 mgr.smithi152.jkoscf (mgr.14182) 171 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:57.332 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:57:58.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:57:58 smithi195 bash[19846]: cluster 2024-01-24T02:57:57.122114+0000 mgr.smithi152.jkoscf (mgr.14182) 172 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:57:58.505 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:57:58 smithi152 bash[16344]: cluster 2024-01-24T02:57:57.122114+0000 mgr.smithi152.jkoscf (mgr.14182) 172 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:00.258 INFO:teuthology.orchestra.run.smithi152.stdout:85899345957 2024-01-24T02:58:00.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:00 smithi195 bash[19846]: cluster 2024-01-24T02:57:59.122681+0000 mgr.smithi152.jkoscf (mgr.14182) 173 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:00.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:00 smithi152 bash[16344]: cluster 2024-01-24T02:57:59.122681+0000 mgr.smithi152.jkoscf (mgr.14182) 173 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:00.820 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345944 got 85899345957 for osd.2 2024-01-24T02:58:00.821 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd last-stat-seq osd.3 2024-01-24T02:58:01.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:01 smithi195 bash[19846]: audit 2024-01-24T02:58:00.258361+0000 mon.smithi152 (mon.0) 576 : audit [DBG] from='client.? 172.21.15.152:0/3416942751' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-01-24T02:58:01.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:01 smithi152 bash[16344]: audit 2024-01-24T02:58:00.258361+0000 mon.smithi152 (mon.0) 576 : audit [DBG] from='client.? 172.21.15.152:0/3416942751' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-01-24T02:58:02.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:02 smithi195 bash[19846]: cluster 2024-01-24T02:58:01.123235+0000 mgr.smithi152.jkoscf (mgr.14182) 174 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:02.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:02 smithi152 bash[16344]: cluster 2024-01-24T02:58:01.123235+0000 mgr.smithi152.jkoscf (mgr.14182) 174 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:04.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:04 smithi195 bash[19846]: cluster 2024-01-24T02:58:03.123800+0000 mgr.smithi152.jkoscf (mgr.14182) 175 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:04.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:04 smithi152 bash[16344]: cluster 2024-01-24T02:58:03.123800+0000 mgr.smithi152.jkoscf (mgr.14182) 175 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:05.666 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:58:06.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:06 smithi195 bash[19846]: cluster 2024-01-24T02:58:05.124376+0000 mgr.smithi152.jkoscf (mgr.14182) 176 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:06.555 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:06 smithi152 bash[16344]: cluster 2024-01-24T02:58:05.124376+0000 mgr.smithi152.jkoscf (mgr.14182) 176 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:08.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:08 smithi195 bash[19846]: cluster 2024-01-24T02:58:07.124763+0000 mgr.smithi152.jkoscf (mgr.14182) 177 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:08.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:08 smithi152 bash[16344]: cluster 2024-01-24T02:58:07.124763+0000 mgr.smithi152.jkoscf (mgr.14182) 177 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:08.601 INFO:teuthology.orchestra.run.smithi152.stdout:115964117029 2024-01-24T02:58:09.195 INFO:tasks.cephadm.ceph_manager.ceph:need seq 115964117016 got 115964117029 for osd.3 2024-01-24T02:58:09.196 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd last-stat-seq osd.4 2024-01-24T02:58:09.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:09 smithi195 bash[19846]: audit 2024-01-24T02:58:08.600537+0000 mon.smithi152 (mon.0) 577 : audit [DBG] from='client.? 172.21.15.152:0/1340330027' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-01-24T02:58:09.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:09 smithi152 bash[16344]: audit 2024-01-24T02:58:08.600537+0000 mon.smithi152 (mon.0) 577 : audit [DBG] from='client.? 172.21.15.152:0/1340330027' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-01-24T02:58:10.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:10 smithi195 bash[19846]: cluster 2024-01-24T02:58:09.125300+0000 mgr.smithi152.jkoscf (mgr.14182) 178 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:10.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:10 smithi152 bash[16344]: cluster 2024-01-24T02:58:09.125300+0000 mgr.smithi152.jkoscf (mgr.14182) 178 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:12.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:12 smithi195 bash[19846]: cluster 2024-01-24T02:58:11.125809+0000 mgr.smithi152.jkoscf (mgr.14182) 179 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:12.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:12 smithi152 bash[16344]: cluster 2024-01-24T02:58:11.125809+0000 mgr.smithi152.jkoscf (mgr.14182) 179 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:14.040 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:58:14.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:14 smithi195 bash[19846]: cluster 2024-01-24T02:58:13.126417+0000 mgr.smithi152.jkoscf (mgr.14182) 180 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:14.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:14 smithi152 bash[16344]: cluster 2024-01-24T02:58:13.126417+0000 mgr.smithi152.jkoscf (mgr.14182) 180 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:16.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:16 smithi195 bash[19846]: cluster 2024-01-24T02:58:15.127010+0000 mgr.smithi152.jkoscf (mgr.14182) 181 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:16.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:16 smithi152 bash[16344]: cluster 2024-01-24T02:58:15.127010+0000 mgr.smithi152.jkoscf (mgr.14182) 181 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:17.055 INFO:teuthology.orchestra.run.smithi152.stdout:107374182439 2024-01-24T02:58:17.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:17 smithi195 bash[19846]: audit 2024-01-24T02:58:17.054480+0000 mon.smithi152 (mon.0) 578 : audit [DBG] from='client.? 172.21.15.152:0/2953559192' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-01-24T02:58:17.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:17 smithi152 bash[16344]: audit 2024-01-24T02:58:17.054480+0000 mon.smithi152 (mon.0) 578 : audit [DBG] from='client.? 172.21.15.152:0/2953559192' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-01-24T02:58:17.644 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182426 got 107374182439 for osd.4 2024-01-24T02:58:17.644 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd last-stat-seq osd.5 2024-01-24T02:58:18.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:18 smithi152 bash[16344]: cluster 2024-01-24T02:58:17.127605+0000 mgr.smithi152.jkoscf (mgr.14182) 182 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:18.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:18 smithi195 bash[19846]: cluster 2024-01-24T02:58:17.127605+0000 mgr.smithi152.jkoscf (mgr.14182) 182 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:20.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:20 smithi195 bash[19846]: cluster 2024-01-24T02:58:19.128199+0000 mgr.smithi152.jkoscf (mgr.14182) 183 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:20.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:20 smithi152 bash[16344]: cluster 2024-01-24T02:58:19.128199+0000 mgr.smithi152.jkoscf (mgr.14182) 183 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:22.473 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:58:22.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:22 smithi152 bash[16344]: cluster 2024-01-24T02:58:21.128753+0000 mgr.smithi152.jkoscf (mgr.14182) 184 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:22.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:22 smithi195 bash[19846]: cluster 2024-01-24T02:58:21.128753+0000 mgr.smithi152.jkoscf (mgr.14182) 184 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:24.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:24 smithi152 bash[16344]: cluster 2024-01-24T02:58:23.129369+0000 mgr.smithi152.jkoscf (mgr.14182) 185 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:24.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:24 smithi195 bash[19846]: cluster 2024-01-24T02:58:23.129369+0000 mgr.smithi152.jkoscf (mgr.14182) 185 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:25.486 INFO:teuthology.orchestra.run.smithi152.stdout:141733920808 2024-01-24T02:58:26.149 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920794 got 141733920808 for osd.5 2024-01-24T02:58:26.149 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd last-stat-seq osd.6 2024-01-24T02:58:26.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:26 smithi152 bash[16344]: cluster 2024-01-24T02:58:25.129836+0000 mgr.smithi152.jkoscf (mgr.14182) 186 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:26.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:26 smithi152 bash[16344]: audit 2024-01-24T02:58:25.486213+0000 mon.smithi152 (mon.0) 579 : audit [DBG] from='client.? 172.21.15.152:0/3587635556' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-01-24T02:58:26.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:26 smithi195 bash[19846]: cluster 2024-01-24T02:58:25.129836+0000 mgr.smithi152.jkoscf (mgr.14182) 186 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:26.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:26 smithi195 bash[19846]: audit 2024-01-24T02:58:25.486213+0000 mon.smithi152 (mon.0) 579 : audit [DBG] from='client.? 172.21.15.152:0/3587635556' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-01-24T02:58:28.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:28 smithi152 bash[16344]: cluster 2024-01-24T02:58:27.130456+0000 mgr.smithi152.jkoscf (mgr.14182) 187 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:28.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:28 smithi195 bash[19846]: cluster 2024-01-24T02:58:27.130456+0000 mgr.smithi152.jkoscf (mgr.14182) 187 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:30.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:30 smithi195 bash[19846]: cluster 2024-01-24T02:58:29.131096+0000 mgr.smithi152.jkoscf (mgr.14182) 188 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:30.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:30 smithi152 bash[16344]: cluster 2024-01-24T02:58:29.131096+0000 mgr.smithi152.jkoscf (mgr.14182) 188 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:30.980 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:58:32.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:32 smithi152 bash[16344]: cluster 2024-01-24T02:58:31.131698+0000 mgr.smithi152.jkoscf (mgr.14182) 189 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:32.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:32 smithi195 bash[19846]: cluster 2024-01-24T02:58:31.131698+0000 mgr.smithi152.jkoscf (mgr.14182) 189 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:33.949 INFO:teuthology.orchestra.run.smithi152.stdout:124554051624 2024-01-24T02:58:34.557 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:34 smithi152 bash[16344]: cluster 2024-01-24T02:58:33.132294+0000 mgr.smithi152.jkoscf (mgr.14182) 190 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:34.558 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:34 smithi152 bash[16344]: audit 2024-01-24T02:58:33.949045+0000 mon.smithi152 (mon.0) 580 : audit [DBG] from='client.? 172.21.15.152:0/4292329316' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-01-24T02:58:34.558 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051611 got 124554051624 for osd.6 2024-01-24T02:58:34.559 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph osd last-stat-seq osd.7 2024-01-24T02:58:34.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:34 smithi195 bash[19846]: cluster 2024-01-24T02:58:33.132294+0000 mgr.smithi152.jkoscf (mgr.14182) 190 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:34.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:34 smithi195 bash[19846]: audit 2024-01-24T02:58:33.949045+0000 mon.smithi152 (mon.0) 580 : audit [DBG] from='client.? 172.21.15.152:0/4292329316' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-01-24T02:58:36.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:36 smithi152 bash[16344]: cluster 2024-01-24T02:58:35.132891+0000 mgr.smithi152.jkoscf (mgr.14182) 191 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:36.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:36 smithi195 bash[19846]: cluster 2024-01-24T02:58:35.132891+0000 mgr.smithi152.jkoscf (mgr.14182) 191 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:38.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:38 smithi152 bash[16344]: cluster 2024-01-24T02:58:37.133485+0000 mgr.smithi152.jkoscf (mgr.14182) 192 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:38.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:38 smithi195 bash[19846]: cluster 2024-01-24T02:58:37.133485+0000 mgr.smithi152.jkoscf (mgr.14182) 192 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:39.398 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:58:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:40 smithi195 bash[19846]: cluster 2024-01-24T02:58:39.134143+0000 mgr.smithi152.jkoscf (mgr.14182) 193 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:40.541 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:40 smithi152 bash[16344]: cluster 2024-01-24T02:58:39.134143+0000 mgr.smithi152.jkoscf (mgr.14182) 193 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:42.275 INFO:teuthology.orchestra.run.smithi152.stdout:158913789993 2024-01-24T02:58:42.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:42 smithi152 bash[16344]: cluster 2024-01-24T02:58:41.134732+0000 mgr.smithi152.jkoscf (mgr.14182) 194 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:42.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:42 smithi152 bash[16344]: audit 2024-01-24T02:58:42.274686+0000 mon.smithi152 (mon.0) 581 : audit [DBG] from='client.? 172.21.15.152:0/237232265' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-01-24T02:58:42.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:42 smithi195 bash[19846]: cluster 2024-01-24T02:58:41.134732+0000 mgr.smithi152.jkoscf (mgr.14182) 194 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:42.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:42 smithi195 bash[19846]: audit 2024-01-24T02:58:42.274686+0000 mon.smithi152 (mon.0) 581 : audit [DBG] from='client.? 172.21.15.152:0/237232265' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-01-24T02:58:42.858 INFO:tasks.cephadm.ceph_manager.ceph:need seq 158913789980 got 158913789993 for osd.7 2024-01-24T02:58:42.858 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-01-24T02:58:42.858 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph pg dump --format=json 2024-01-24T02:58:44.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:44 smithi152 bash[16344]: cluster 2024-01-24T02:58:43.135313+0000 mgr.smithi152.jkoscf (mgr.14182) 195 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:44.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:44 smithi195 bash[19846]: cluster 2024-01-24T02:58:43.135313+0000 mgr.smithi152.jkoscf (mgr.14182) 195 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:46.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:46 smithi152 bash[16344]: cluster 2024-01-24T02:58:45.135901+0000 mgr.smithi152.jkoscf (mgr.14182) 196 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:46.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:46 smithi195 bash[19846]: cluster 2024-01-24T02:58:45.135901+0000 mgr.smithi152.jkoscf (mgr.14182) 196 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:47.695 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:58:48.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:48 smithi152 bash[16344]: cluster 2024-01-24T02:58:47.136403+0000 mgr.smithi152.jkoscf (mgr.14182) 197 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:48.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:48 smithi195 bash[19846]: cluster 2024-01-24T02:58:47.136403+0000 mgr.smithi152.jkoscf (mgr.14182) 197 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:50.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:50 smithi195 bash[19846]: cluster 2024-01-24T02:58:49.136978+0000 mgr.smithi152.jkoscf (mgr.14182) 198 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:50.508 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:58:50.510 INFO:teuthology.orchestra.run.smithi152.stderr:dumped all 2024-01-24T02:58:50.570 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:50 smithi152 bash[16344]: cluster 2024-01-24T02:58:49.136978+0000 mgr.smithi152.jkoscf (mgr.14182) 198 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:51.083 INFO:teuthology.orchestra.run.smithi152.stdout:{"pg_ready":true,"pg_map":{"version":183,"stamp":"2024-01-24T02:58:49.136686+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":2379804,"kb_used_data":3036,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548644,"statfs":{"total":767926730752,"available":765489811456,"internally_reserved":0,"allocated":3108864,"data_stored":1226693,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":2433744896},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"0.000000"},"pg_stats":[{"pgid":"1.0","version":"0'0","reported_seq":10,"reported_epoch":39,"state":"active+clean","last_fresh":"2024-01-24T02:55:30.870632+0000","last_change":"2024-01-24T02:55:30.870632+0000","last_active":"2024-01-24T02:55:30.870632+0000","last_peered":"2024-01-24T02:55:30.870632+0000","last_clean":"2024-01-24T02:55:30.870632+0000","last_became_active":"2024-01-24T02:55:30.870331+0000","last_became_peered":"2024-01-24T02:55:30.870331+0000","last_unstale":"2024-01-24T02:55:30.870632+0000","last_undegraded":"2024-01-24T02:55:30.870632+0000","last_fullsized":"2024-01-24T02:55:30.870632+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":21,"last_epoch_clean":39,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-01-24T02:55:10.584343+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-01-24T02:55:10.584343+0000","last_clean_scrub_stamp":"2024-01-24T02:55:10.584343+0000","log_size":0,"ondisk_log_size":0,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":37,"seq":158913789995,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":0.92400000000000004,"5min":0.86699999999999999,"15min":0.85599999999999998},"min":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"max":{"1min":1.099,"5min":1.099,"15min":1.099},"last":0.72299999999999998},{"interface":"front","average":{"1min":0.88600000000000001,"5min":0.85399999999999998,"15min":0.85099999999999998},"min":{"1min":0.65100000000000002,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":1.1539999999999999,"5min":1.1639999999999999,"15min":1.1639999999999999},"last":0.92000000000000004}]},{"osd":1,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":0.83299999999999996,"5min":0.73799999999999999,"15min":0.71799999999999997},"min":{"1min":0.63800000000000001,"5min":0.53500000000000003,"15min":0.53500000000000003},"max":{"1min":1.1950000000000001,"5min":1.2889999999999999,"15min":1.2889999999999999},"last":0.64300000000000002},{"interface":"front","average":{"1min":0.81399999999999995,"5min":0.83699999999999997,"15min":0.83699999999999997},"min":{"1min":0.60999999999999999,"5min":0.49199999999999999,"15min":0.49199999999999999},"max":{"1min":1.113,"5min":1.141,"15min":1.141},"last":0.76900000000000002}]},{"osd":2,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":0.83699999999999997,"5min":0.84199999999999997,"15min":0.84399999999999997},"min":{"1min":0.58099999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":1.0629999999999999,"5min":1.1259999999999999,"15min":1.1259999999999999},"last":0.61799999999999999},{"interface":"front","average":{"1min":0.97399999999999998,"5min":0.91000000000000003,"15min":0.89200000000000002},"min":{"1min":0.70799999999999996,"5min":0.66600000000000004,"15min":0.66600000000000004},"max":{"1min":1.212,"5min":1.212,"15min":1.212},"last":1.081}]},{"osd":3,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":0.93500000000000005,"5min":0.877,"15min":0.85599999999999998},"min":{"1min":0.57699999999999996,"5min":0.57699999999999996,"15min":0.57699999999999996},"max":{"1min":1.1519999999999999,"5min":1.345,"15min":1.345},"last":1.016},{"interface":"front","average":{"1min":0.96199999999999997,"5min":0.90100000000000002,"15min":0.88500000000000001},"min":{"1min":0.68000000000000005,"5min":0.56499999999999995,"15min":0.56499999999999995},"max":{"1min":1.286,"5min":1.3420000000000001,"15min":1.3420000000000001},"last":0.69499999999999995}]},{"osd":4,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":1.002,"5min":1.0049999999999999,"15min":1.0049999999999999},"min":{"1min":0.84199999999999997,"5min":0.71199999999999997,"15min":0.71199999999999997},"max":{"1min":1.139,"5min":1.24,"15min":1.24},"last":0.86499999999999999},{"interface":"front","average":{"1min":1.075,"5min":1.0649999999999999,"15min":1.0649999999999999},"min":{"1min":0.752,"5min":0.752,"15min":0.752},"max":{"1min":1.4830000000000001,"5min":1.4830000000000001,"15min":1.4830000000000001},"last":0.94699999999999995}]},{"osd":5,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":1.143,"5min":1.046,"15min":1.0209999999999999},"min":{"1min":0.84999999999999998,"5min":0.73099999999999998,"15min":0.73099999999999998},"max":{"1min":1.538,"5min":1.538,"15min":1.538},"last":0.80800000000000005},{"interface":"front","average":{"1min":1.085,"5min":1.0800000000000001,"15min":1.085},"min":{"1min":0.627,"5min":0.627,"15min":0.627},"max":{"1min":1.3149999999999999,"5min":1.627,"15min":1.627},"last":1.0629999999999999}]},{"osd":6,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":1.177,"5min":1.161,"15min":1.1639999999999999},"min":{"1min":0.81200000000000006,"5min":0.81200000000000006,"15min":0.81200000000000006},"max":{"1min":1.6299999999999999,"5min":1.6299999999999999,"15min":1.6299999999999999},"last":0.97599999999999998},{"interface":"front","average":{"1min":1.1699999999999999,"5min":1.169,"15min":1.169},"min":{"1min":0.94799999999999995,"5min":0.83599999999999997,"15min":0.83599999999999997},"max":{"1min":1.496,"5min":1.9370000000000001,"15min":1.9370000000000001},"last":1.036}]}]},{"osd":5,"up_from":33,"seq":141733920813,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":0.874,"5min":0.82799999999999996,"15min":0.81200000000000006},"min":{"1min":0.629,"5min":0.629,"15min":0.629},"max":{"1min":1.399,"5min":1.399,"15min":1.399},"last":0.82199999999999995},{"interface":"front","average":{"1min":0.86099999999999999,"5min":0.88300000000000001,"15min":0.88700000000000001},"min":{"1min":0.67300000000000004,"5min":0.61899999999999999,"15min":0.61899999999999999},"max":{"1min":1.1659999999999999,"5min":1.2250000000000001,"15min":1.2250000000000001},"last":0.94899999999999995}]},{"osd":1,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":0.72899999999999998,"5min":0.70999999999999996,"15min":0.69399999999999995},"min":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"max":{"1min":1.1619999999999999,"5min":1.1619999999999999,"15min":1.1619999999999999},"last":0.745},{"interface":"front","average":{"1min":0.78200000000000003,"5min":0.755,"15min":0.72699999999999998},"min":{"1min":0.46600000000000003,"5min":0.41999999999999998,"15min":0.41999999999999998},"max":{"1min":1.1599999999999999,"5min":1.258,"15min":1.258},"last":0.68899999999999995}]},{"osd":2,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":0.97099999999999997,"5min":0.92100000000000004,"15min":0.90100000000000002},"min":{"1min":0.64300000000000002,"5min":0.58199999999999996,"15min":0.58199999999999996},"max":{"1min":1.2949999999999999,"5min":1.2949999999999999,"15min":1.2949999999999999},"last":0.86199999999999999},{"interface":"front","average":{"1min":0.98799999999999999,"5min":0.93700000000000006,"15min":0.92300000000000004},"min":{"1min":0.63,"5min":0.57199999999999995,"15min":0.57199999999999995},"max":{"1min":1.1719999999999999,"5min":1.639,"15min":1.639},"last":1.1040000000000001}]},{"osd":3,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":0.82499999999999996,"5min":0.82799999999999996,"15min":0.81999999999999995},"min":{"1min":0.53800000000000003,"5min":0.441,"15min":0.441},"max":{"1min":1.2150000000000001,"5min":1.3069999999999999,"15min":1.3069999999999999},"last":0.71499999999999997},{"interface":"front","average":{"1min":0.89300000000000002,"5min":0.84499999999999997,"15min":0.82199999999999995},"min":{"1min":0.70399999999999996,"5min":0.45800000000000002,"15min":0.45800000000000002},"max":{"1min":1.1319999999999999,"5min":1.2529999999999999,"15min":1.2529999999999999},"last":0.83199999999999996}]},{"osd":4,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":1.0009999999999999,"5min":0.97299999999999998,"15min":0.94999999999999996},"min":{"1min":0.68300000000000005,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.4370000000000001,"5min":1.444,"15min":1.444},"last":0.872},{"interface":"front","average":{"1min":1.042,"5min":1.026,"15min":1},"min":{"1min":0.64800000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"max":{"1min":1.4790000000000001,"5min":1.4790000000000001,"15min":1.4790000000000001},"last":1.2190000000000001}]},{"osd":6,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":1.05,"5min":1.0649999999999999,"15min":1.0549999999999999},"min":{"1min":0.76800000000000002,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":1.3029999999999999,"5min":1.643,"15min":1.643},"last":1.1919999999999999},{"interface":"front","average":{"1min":1.0640000000000001,"5min":1.0489999999999999,"15min":1.022},"min":{"1min":0.76000000000000001,"5min":0.66700000000000004,"15min":0.66700000000000004},"max":{"1min":1.3320000000000001,"5min":1.4179999999999999,"15min":1.4179999999999999},"last":1.0369999999999999}]},{"osd":7,"last update":"Wed Jan 24 02:58:38 2024","interfaces":[{"interface":"back","average":{"1min":1.036,"5min":1.071,"15min":1.0489999999999999},"min":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"max":{"1min":1.3919999999999999,"5min":1.528,"15min":1.528},"last":1.0600000000000001},{"interface":"front","average":{"1min":1.0760000000000001,"5min":1.101,"15min":1.085},"min":{"1min":0.67000000000000004,"5min":0.56399999999999995,"15min":0.56399999999999995},"max":{"1min":1.3620000000000001,"5min":1.5880000000000001,"15min":1.5880000000000001},"last":1.272}]}]},{"osd":1,"up_from":20,"seq":85899345966,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297472,"kb_used_data":376,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443584,"statfs":{"total":95990841344,"available":95686230016,"internally_reserved":0,"allocated":385024,"data_stored":153061,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:13 2024","interfaces":[{"interface":"back","average":{"1min":0.96099999999999997,"5min":0.88700000000000001,"15min":0.86699999999999999},"min":{"1min":0.61499999999999999,"5min":0.53900000000000003,"15min":0.53900000000000003},"max":{"1min":1.264,"5min":1.264,"15min":1.264},"last":0.94199999999999995},{"interface":"front","average":{"1min":0.88900000000000001,"5min":0.88500000000000001,"15min":0.88},"min":{"1min":0.72799999999999998,"5min":0.68700000000000006,"15min":0.68700000000000006},"max":{"1min":1.1739999999999999,"5min":1.1739999999999999,"15min":1.1739999999999999},"last":0.76600000000000001}]},{"osd":2,"last update":"Wed Jan 24 02:58:13 2024","interfaces":[{"interface":"back","average":{"1min":0.81299999999999994,"5min":0.77300000000000002,"15min":0.755},"min":{"1min":0.65600000000000003,"5min":0.5,"15min":0.5},"max":{"1min":1.006,"5min":1.1830000000000001,"15min":1.1830000000000001},"last":0.71799999999999997},{"interface":"front","average":{"1min":0.86799999999999999,"5min":0.875,"15min":0.88500000000000001},"min":{"1min":0.64200000000000002,"5min":0.58399999999999996,"15min":0.58399999999999996},"max":{"1min":1.103,"5min":1.3959999999999999,"15min":1.3959999999999999},"last":0.90800000000000003}]},{"osd":3,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":1.0580000000000001,"5min":0.98999999999999999,"15min":0.97999999999999998},"min":{"1min":0.73999999999999999,"5min":0.46999999999999997,"15min":0.46999999999999997},"max":{"1min":1.3360000000000001,"5min":1.7130000000000001,"15min":1.7130000000000001},"last":0.80900000000000005},{"interface":"front","average":{"1min":0.92300000000000004,"5min":0.90800000000000003,"15min":0.89400000000000002},"min":{"1min":0.57599999999999996,"5min":0.378,"15min":0.378},"max":{"1min":1.204,"5min":1.7410000000000001,"15min":1.7410000000000001},"last":0.52700000000000002}]},{"osd":4,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":1.0640000000000001,"5min":0.98199999999999998,"15min":0.96399999999999997},"min":{"1min":0.78000000000000003,"5min":0.63300000000000001,"15min":0.63300000000000001},"max":{"1min":1.3959999999999999,"5min":1.4370000000000001,"15min":1.4370000000000001},"last":0.86899999999999999},{"interface":"front","average":{"1min":1.0549999999999999,"5min":1.002,"15min":1.004},"min":{"1min":0.85399999999999998,"5min":0.55600000000000005,"15min":0.55600000000000005},"max":{"1min":1.377,"5min":1.776,"15min":1.776},"last":0.98099999999999998}]},{"osd":5,"last update":"Wed Jan 24 02:58:28 2024","interfaces":[{"interface":"back","average":{"1min":0.96299999999999997,"5min":0.872,"15min":0.85799999999999998},"min":{"1min":0.66000000000000003,"5min":0.55700000000000005,"15min":0.55700000000000005},"max":{"1min":1.2969999999999999,"5min":1.8759999999999999,"15min":1.8759999999999999},"last":0.84699999999999998},{"interface":"front","average":{"1min":1.0509999999999999,"5min":1.008,"15min":1.008},"min":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"max":{"1min":1.337,"5min":1.4059999999999999,"15min":1.4059999999999999},"last":0.78800000000000003}]},{"osd":6,"last update":"Wed Jan 24 02:58:28 2024","interfaces":[{"interface":"back","average":{"1min":1.0980000000000001,"5min":1.0449999999999999,"15min":1.038},"min":{"1min":0.89200000000000002,"5min":0.55200000000000005,"15min":0.55200000000000005},"max":{"1min":1.4299999999999999,"5min":1.444,"15min":1.444},"last":1.0349999999999999},{"interface":"front","average":{"1min":1.0820000000000001,"5min":1.026,"15min":1.016},"min":{"1min":0.88400000000000001,"5min":0.69799999999999995,"15min":0.69799999999999995},"max":{"1min":1.3999999999999999,"5min":1.78,"15min":1.78},"last":0.92900000000000005}]},{"osd":7,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":1.1519999999999999,"5min":1.0640000000000001,"15min":1.0600000000000001},"min":{"1min":0.81699999999999995,"5min":0.51200000000000001,"15min":0.51200000000000001},"max":{"1min":1.494,"5min":1.516,"15min":1.516},"last":1.0960000000000001},{"interface":"front","average":{"1min":1.2070000000000001,"5min":1.1279999999999999,"15min":1.113},"min":{"1min":0.66100000000000003,"5min":0.45900000000000002,"15min":0.45900000000000002},"max":{"1min":1.46,"5min":1.482,"15min":1.482},"last":1.018}]}]},{"osd":0,"up_from":16,"seq":68719476783,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Wed Jan 24 02:58:12 2024","interfaces":[{"interface":"back","average":{"1min":0.89800000000000002,"5min":0.84399999999999997,"15min":0.82999999999999996},"min":{"1min":0.63800000000000001,"5min":0.53900000000000003,"15min":0.53900000000000003},"max":{"1min":1.171,"5min":1.171,"15min":1.171},"last":0.85699999999999998},{"interface":"front","average":{"1min":0.84299999999999997,"5min":0.81200000000000006,"15min":0.81399999999999995},"min":{"1min":0.70999999999999996,"5min":0.57499999999999996,"15min":0.57499999999999996},"max":{"1min":1.103,"5min":1.103,"15min":1.103},"last":0.73999999999999999}]},{"osd":2,"last update":"Wed Jan 24 02:58:12 2024","interfaces":[{"interface":"back","average":{"1min":0.78100000000000003,"5min":0.79600000000000004,"15min":0.80100000000000005},"min":{"1min":0.58499999999999996,"5min":0.34100000000000003,"15min":0.34100000000000003},"max":{"1min":1.2030000000000001,"5min":1.274,"15min":1.274},"last":0.69799999999999995},{"interface":"front","average":{"1min":0.81299999999999994,"5min":0.81699999999999995,"15min":0.82999999999999996},"min":{"1min":0.57499999999999996,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":1.0780000000000001,"5min":1.375,"15min":1.375},"last":0.65200000000000002}]},{"osd":3,"last update":"Wed Jan 24 02:58:20 2024","interfaces":[{"interface":"back","average":{"1min":1.0469999999999999,"5min":1.0289999999999999,"15min":1.0189999999999999},"min":{"1min":0.77000000000000002,"5min":0.67200000000000004,"15min":0.67200000000000004},"max":{"1min":1.337,"5min":1.5349999999999999,"15min":1.5349999999999999},"last":1},{"interface":"front","average":{"1min":0.99299999999999999,"5min":1.006,"15min":1.0109999999999999},"min":{"1min":0.77100000000000002,"5min":0.63700000000000001,"15min":0.63700000000000001},"max":{"1min":1.3380000000000001,"5min":1.401,"15min":1.401},"last":1.0609999999999999}]},{"osd":4,"last update":"Wed Jan 24 02:58:20 2024","interfaces":[{"interface":"back","average":{"1min":0.95599999999999996,"5min":0.92500000000000004,"15min":0.92300000000000004},"min":{"1min":0.70799999999999996,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":1.2150000000000001,"5min":1.4410000000000001,"15min":1.4410000000000001},"last":0.90900000000000003},{"interface":"front","average":{"1min":0.93400000000000005,"5min":0.93899999999999995,"15min":0.94799999999999995},"min":{"1min":0.68600000000000005,"5min":0.50600000000000001,"15min":0.50600000000000001},"max":{"1min":1.234,"5min":1.234,"15min":1.234},"last":0.94599999999999995}]},{"osd":5,"last update":"Wed Jan 24 02:58:29 2024","interfaces":[{"interface":"back","average":{"1min":0.90900000000000003,"5min":0.95699999999999996,"15min":0.96699999999999997},"min":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"max":{"1min":1.3979999999999999,"5min":1.3979999999999999,"15min":1.3979999999999999},"last":0.88400000000000001},{"interface":"front","average":{"1min":1.0960000000000001,"5min":1.103,"15min":1.101},"min":{"1min":0.85899999999999999,"5min":0.84099999999999997,"15min":0.84099999999999997},"max":{"1min":1.621,"5min":1.6299999999999999,"15min":1.6299999999999999},"last":1.093}]},{"osd":6,"last update":"Wed Jan 24 02:58:20 2024","interfaces":[{"interface":"back","average":{"1min":1.0800000000000001,"5min":1.1060000000000001,"15min":1.111},"min":{"1min":0.80400000000000005,"5min":0.80400000000000005,"15min":0.80400000000000005},"max":{"1min":1.429,"5min":1.722,"15min":1.722},"last":1.1579999999999999},{"interface":"front","average":{"1min":1.145,"5min":1.151,"15min":1.1699999999999999},"min":{"1min":0.89300000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"max":{"1min":1.4890000000000001,"5min":1.583,"15min":1.583},"last":1.137}]},{"osd":7,"last update":"Wed Jan 24 02:58:37 2024","interfaces":[{"interface":"back","average":{"1min":1.1000000000000001,"5min":1.1539999999999999,"15min":1.1639999999999999},"min":{"1min":0.91600000000000004,"5min":0.86099999999999999,"15min":0.86099999999999999},"max":{"1min":1.5840000000000001,"5min":1.6659999999999999,"15min":1.6659999999999999},"last":1.2350000000000001},{"interface":"front","average":{"1min":1.23,"5min":1.2869999999999999,"15min":1.2969999999999999},"min":{"1min":0.97099999999999997,"5min":0.97099999999999997,"15min":0.97099999999999997},"max":{"1min":1.651,"5min":1.806,"15min":1.806},"last":1.202}]}]},{"osd":2,"up_from":20,"seq":85899345967,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:16 2024","interfaces":[{"interface":"back","average":{"1min":0.65400000000000003,"5min":0.66200000000000003,"15min":0.66900000000000004},"min":{"1min":0.52000000000000002,"5min":0.47699999999999998,"15min":0.47699999999999998},"max":{"1min":0.94499999999999995,"5min":0.99299999999999999,"15min":0.99299999999999999},"last":0.82699999999999996},{"interface":"front","average":{"1min":0.80300000000000005,"5min":0.77600000000000002,"15min":0.77500000000000002},"min":{"1min":0.45000000000000001,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":1.272,"5min":1.272,"15min":1.272},"last":0.60199999999999998}]},{"osd":1,"last update":"Wed Jan 24 02:58:16 2024","interfaces":[{"interface":"back","average":{"1min":0.90600000000000003,"5min":0.88700000000000001,"15min":0.88},"min":{"1min":0.71599999999999997,"5min":0.66500000000000004,"15min":0.66500000000000004},"max":{"1min":1.2050000000000001,"5min":1.3999999999999999,"15min":1.3999999999999999},"last":0.88400000000000001},{"interface":"front","average":{"1min":0.93999999999999995,"5min":0.89000000000000001,"15min":0.88400000000000001},"min":{"1min":0.57299999999999995,"5min":0.52300000000000002,"15min":0.52300000000000002},"max":{"1min":1.28,"5min":1.28,"15min":1.28},"last":1.0389999999999999}]},{"osd":3,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":0.91800000000000004,"5min":0.94999999999999996,"15min":0.94899999999999995},"min":{"1min":0.70999999999999996,"5min":0.67100000000000004,"15min":0.67100000000000004},"max":{"1min":1.21,"5min":1.21,"15min":1.21},"last":1.0049999999999999},{"interface":"front","average":{"1min":1.0680000000000001,"5min":1.034,"15min":1.02},"min":{"1min":0.84499999999999997,"5min":0.66000000000000003,"15min":0.66000000000000003},"max":{"1min":1.363,"5min":1.363,"15min":1.363},"last":0.90300000000000002}]},{"osd":4,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":0.82999999999999996,"5min":0.84499999999999997,"15min":0.84799999999999998},"min":{"1min":0.624,"5min":0.59799999999999998,"15min":0.59799999999999998},"max":{"1min":1.3089999999999999,"5min":1.3089999999999999,"15min":1.3089999999999999},"last":0.77500000000000002},{"interface":"front","average":{"1min":0.86599999999999999,"5min":0.90200000000000002,"15min":0.90400000000000003},"min":{"1min":0.66800000000000004,"5min":0.626,"15min":0.626},"max":{"1min":1.1180000000000001,"5min":1.2070000000000001,"15min":1.2070000000000001},"last":0.69099999999999995}]},{"osd":5,"last update":"Wed Jan 24 02:58:34 2024","interfaces":[{"interface":"back","average":{"1min":1.022,"5min":1.0269999999999999,"15min":1.0289999999999999},"min":{"1min":0.71799999999999997,"5min":0.71799999999999997,"15min":0.71799999999999997},"max":{"1min":1.212,"5min":1.323,"15min":1.323},"last":0.97699999999999998},{"interface":"front","average":{"1min":1.099,"5min":1.0780000000000001,"15min":1.079},"min":{"1min":0.66800000000000004,"5min":0.66800000000000004,"15min":0.66800000000000004},"max":{"1min":1.3799999999999999,"5min":1.397,"15min":1.397},"last":0.96399999999999997}]},{"osd":6,"last update":"Wed Jan 24 02:58:23 2024","interfaces":[{"interface":"back","average":{"1min":1.05,"5min":1.05,"15min":1.052},"min":{"1min":0.497,"5min":0.497,"15min":0.497},"max":{"1min":1.4259999999999999,"5min":1.5069999999999999,"15min":1.5069999999999999},"last":1.127},{"interface":"front","average":{"1min":1.0840000000000001,"5min":1.125,"15min":1.1379999999999999},"min":{"1min":0.58299999999999996,"5min":0.58299999999999996,"15min":0.58299999999999996},"max":{"1min":1.284,"5min":1.671,"15min":1.671},"last":0.93799999999999994}]},{"osd":7,"last update":"Wed Jan 24 02:58:34 2024","interfaces":[{"interface":"back","average":{"1min":1.151,"5min":1.1559999999999999,"15min":1.1519999999999999},"min":{"1min":0.83299999999999996,"5min":0.83299999999999996,"15min":0.83299999999999996},"max":{"1min":1.341,"5min":1.611,"15min":1.611},"last":1.03},{"interface":"front","average":{"1min":1.139,"5min":1.1439999999999999,"15min":1.1499999999999999},"min":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"max":{"1min":1.6479999999999999,"5min":1.6479999999999999,"15min":1.6479999999999999},"last":1.0980000000000001}]}]},{"osd":4,"up_from":25,"seq":107374182445,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":0.69999999999999996,"5min":0.72899999999999998,"15min":0.73799999999999999},"min":{"1min":0.58799999999999997,"5min":0.48599999999999999,"15min":0.48599999999999999},"max":{"1min":0.96799999999999997,"5min":1.107,"15min":1.107},"last":1.153},{"interface":"front","average":{"1min":0.82599999999999996,"5min":0.83699999999999997,"15min":0.85099999999999998},"min":{"1min":0.67500000000000004,"5min":0.5,"15min":0.5},"max":{"1min":1.0649999999999999,"5min":1.2649999999999999,"15min":1.2649999999999999},"last":0.60799999999999998}]},{"osd":1,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":0.85499999999999998,"5min":0.92900000000000005,"15min":0.95099999999999996},"min":{"1min":0.63800000000000001,"5min":0.55200000000000005,"15min":0.55200000000000005},"max":{"1min":1.278,"5min":2.02,"15min":2.02},"last":0.83799999999999997},{"interface":"front","average":{"1min":0.88900000000000001,"5min":0.91300000000000003,"15min":0.92800000000000005},"min":{"1min":0.68200000000000005,"5min":0.61399999999999999,"15min":0.61399999999999999},"max":{"1min":1.123,"5min":1.389,"15min":1.389},"last":0.80300000000000005}]},{"osd":2,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":0.85199999999999998,"5min":0.85999999999999999,"15min":0.86599999999999999},"min":{"1min":0.64200000000000002,"5min":0.47299999999999998,"15min":0.47299999999999998},"max":{"1min":1.163,"5min":1.4650000000000001,"15min":1.4650000000000001},"last":0.77900000000000003},{"interface":"front","average":{"1min":0.874,"5min":0.83599999999999997,"15min":0.81799999999999995},"min":{"1min":0.69099999999999995,"5min":0.64300000000000002,"15min":0.64300000000000002},"max":{"1min":1.1040000000000001,"5min":1.3320000000000001,"15min":1.3320000000000001},"last":0.998}]},{"osd":3,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":1.01,"5min":0.93700000000000006,"15min":0.92600000000000005},"min":{"1min":0.78600000000000003,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.22,"5min":1.22,"15min":1.22},"last":0.72299999999999998},{"interface":"front","average":{"1min":1.0089999999999999,"5min":0.999,"15min":0.98999999999999999},"min":{"1min":0.80400000000000005,"5min":0.60099999999999998,"15min":0.60099999999999998},"max":{"1min":1.3029999999999999,"5min":1.3859999999999999,"15min":1.3859999999999999},"last":0.64200000000000002}]},{"osd":5,"last update":"Wed Jan 24 02:58:29 2024","interfaces":[{"interface":"back","average":{"1min":1.0680000000000001,"5min":1.0620000000000001,"15min":1.0660000000000001},"min":{"1min":0.81200000000000006,"5min":0.76300000000000001,"15min":0.76300000000000001},"max":{"1min":1.456,"5min":1.456,"15min":1.456},"last":0.94399999999999995},{"interface":"front","average":{"1min":1.0780000000000001,"5min":1.1240000000000001,"15min":1.1419999999999999},"min":{"1min":0.90800000000000003,"5min":0.753,"15min":0.753},"max":{"1min":1.4530000000000001,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":1.0309999999999999}]},{"osd":6,"last update":"Wed Jan 24 02:58:25 2024","interfaces":[{"interface":"back","average":{"1min":1.1120000000000001,"5min":1.0720000000000001,"15min":1.0780000000000001},"min":{"1min":0.90600000000000003,"5min":0.77500000000000002,"15min":0.77500000000000002},"max":{"1min":1.367,"5min":1.367,"15min":1.367},"last":1.0649999999999999},{"interface":"front","average":{"1min":1.1519999999999999,"5min":1.105,"15min":1.107},"min":{"1min":0.877,"5min":0.70199999999999996,"15min":0.70199999999999996},"max":{"1min":1.3340000000000001,"5min":1.417,"15min":1.417},"last":0.90300000000000002}]},{"osd":7,"last update":"Wed Jan 24 02:58:29 2024","interfaces":[{"interface":"back","average":{"1min":1.24,"5min":1.1919999999999999,"15min":1.1919999999999999},"min":{"1min":1.1180000000000001,"5min":0.84399999999999997,"15min":0.84399999999999997},"max":{"1min":1.522,"5min":1.522,"15min":1.522},"last":1.103},{"interface":"front","average":{"1min":1.2090000000000001,"5min":1.1359999999999999,"15min":1.1140000000000001},"min":{"1min":0.91000000000000003,"5min":0.80800000000000005,"15min":0.80800000000000005},"max":{"1min":1.413,"5min":1.4159999999999999,"15min":1.4159999999999999},"last":1.1220000000000001}]}]},{"osd":3,"up_from":27,"seq":115964117037,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:21 2024","interfaces":[{"interface":"back","average":{"1min":0.90300000000000002,"5min":0.90500000000000003,"15min":0.90900000000000003},"min":{"1min":0.621,"5min":0.47799999999999998,"15min":0.47799999999999998},"max":{"1min":1.157,"5min":1.1950000000000001,"15min":1.1950000000000001},"last":0.73399999999999999},{"interface":"front","average":{"1min":0.875,"5min":0.89100000000000001,"15min":0.89700000000000002},"min":{"1min":0.505,"5min":0.505,"15min":0.505},"max":{"1min":1.0920000000000001,"5min":1.2010000000000001,"15min":1.2010000000000001},"last":0.94999999999999996}]},{"osd":1,"last update":"Wed Jan 24 02:58:21 2024","interfaces":[{"interface":"back","average":{"1min":0.71499999999999997,"5min":0.73699999999999999,"15min":0.73699999999999999},"min":{"1min":0.47099999999999997,"5min":0.41899999999999998,"15min":0.41899999999999998},"max":{"1min":1.0449999999999999,"5min":1.0509999999999999,"15min":1.0509999999999999},"last":0.626},{"interface":"front","average":{"1min":0.72499999999999998,"5min":0.73899999999999999,"15min":0.72899999999999998},"min":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"max":{"1min":1.0580000000000001,"5min":1.165,"15min":1.165},"last":0.82499999999999996}]},{"osd":2,"last update":"Wed Jan 24 02:58:21 2024","interfaces":[{"interface":"back","average":{"1min":0.87,"5min":0.92600000000000005,"15min":0.94399999999999995},"min":{"1min":0.495,"5min":0.495,"15min":0.495},"max":{"1min":1.3740000000000001,"5min":1.3740000000000001,"15min":1.3740000000000001},"last":0.89900000000000002},{"interface":"front","average":{"1min":0.96899999999999997,"5min":0.96399999999999997,"15min":0.96499999999999997},"min":{"1min":0.747,"5min":0.58999999999999997,"15min":0.58999999999999997},"max":{"1min":1.2649999999999999,"5min":1.2649999999999999,"15min":1.2649999999999999},"last":0.86699999999999999}]},{"osd":4,"last update":"Wed Jan 24 02:58:21 2024","interfaces":[{"interface":"back","average":{"1min":0.86199999999999999,"5min":0.89200000000000002,"15min":0.89400000000000002},"min":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"max":{"1min":1.1819999999999999,"5min":1.1839999999999999,"15min":1.1839999999999999},"last":1.04},{"interface":"front","average":{"1min":0.91700000000000004,"5min":1.028,"15min":1.0680000000000001},"min":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"max":{"1min":1.2030000000000001,"5min":1.397,"15min":1.397},"last":0.97799999999999998}]},{"osd":5,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":0.878,"5min":0.90800000000000003,"15min":0.92200000000000004},"min":{"1min":0.58199999999999996,"5min":0.58199999999999996,"15min":0.58199999999999996},"max":{"1min":1.1479999999999999,"5min":1.3129999999999999,"15min":1.3129999999999999},"last":1.0680000000000001},{"interface":"front","average":{"1min":0.93999999999999995,"5min":1.01,"15min":1.028},"min":{"1min":0.53500000000000003,"5min":0.39900000000000002,"15min":0.39900000000000002},"max":{"1min":1.268,"5min":1.3320000000000001,"15min":1.3320000000000001},"last":1.0189999999999999}]},{"osd":6,"last update":"Wed Jan 24 02:58:21 2024","interfaces":[{"interface":"back","average":{"1min":1.0620000000000001,"5min":1.052,"15min":1.05},"min":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"max":{"1min":1.3049999999999999,"5min":1.536,"15min":1.536},"last":1.1439999999999999},{"interface":"front","average":{"1min":1.077,"5min":1.155,"15min":1.1779999999999999},"min":{"1min":0.58499999999999996,"5min":0.58499999999999996,"15min":0.58499999999999996},"max":{"1min":1.329,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":1.2250000000000001}]},{"osd":7,"last update":"Wed Jan 24 02:58:35 2024","interfaces":[{"interface":"back","average":{"1min":1.0960000000000001,"5min":1.1220000000000001,"15min":1.1319999999999999},"min":{"1min":0.64200000000000002,"5min":0.58399999999999996,"15min":0.58399999999999996},"max":{"1min":1.371,"5min":1.5049999999999999,"15min":1.5049999999999999},"last":1.179},{"interface":"front","average":{"1min":1.0860000000000001,"5min":1.1240000000000001,"15min":1.125},"min":{"1min":0.65700000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.3979999999999999,"5min":1.3979999999999999,"15min":1.3979999999999999},"last":1.159}]}]},{"osd":6,"up_from":29,"seq":124554051628,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:26 2024","interfaces":[{"interface":"back","average":{"1min":0.64300000000000002,"5min":0.69699999999999995,"15min":0.71099999999999997},"min":{"1min":0.502,"5min":0.44900000000000001,"15min":0.44900000000000001},"max":{"1min":0.97699999999999998,"5min":1.268,"15min":1.268},"last":0.88500000000000001},{"interface":"front","average":{"1min":0.80400000000000005,"5min":0.81299999999999994,"15min":0.81599999999999995},"min":{"1min":0.627,"5min":0.56499999999999995,"15min":0.56499999999999995},"max":{"1min":0.98299999999999998,"5min":1.2450000000000001,"15min":1.2450000000000001},"last":0.71099999999999997}]},{"osd":1,"last update":"Wed Jan 24 02:58:26 2024","interfaces":[{"interface":"back","average":{"1min":0.85399999999999998,"5min":0.83599999999999997,"15min":0.83299999999999996},"min":{"1min":0.66900000000000004,"5min":0.621,"15min":0.621},"max":{"1min":1.121,"5min":1.121,"15min":1.121},"last":1.208},{"interface":"front","average":{"1min":0.94299999999999995,"5min":0.94199999999999995,"15min":0.94399999999999995},"min":{"1min":0.77800000000000002,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.119,"5min":1.26,"15min":1.26},"last":0.78700000000000003}]},{"osd":2,"last update":"Wed Jan 24 02:58:26 2024","interfaces":[{"interface":"back","average":{"1min":0.85499999999999998,"5min":0.89000000000000001,"15min":0.89800000000000002},"min":{"1min":0.69599999999999995,"5min":0.47799999999999998,"15min":0.47799999999999998},"max":{"1min":1.2,"5min":1.325,"15min":1.325},"last":1.1970000000000001},{"interface":"front","average":{"1min":0.92100000000000004,"5min":0.85599999999999998,"15min":0.85799999999999998},"min":{"1min":0.65600000000000003,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":1.117,"5min":1.1619999999999999,"15min":1.1619999999999999},"last":0.61699999999999999}]},{"osd":3,"last update":"Wed Jan 24 02:58:26 2024","interfaces":[{"interface":"back","average":{"1min":0.871,"5min":0.91100000000000003,"15min":0.92400000000000004},"min":{"1min":0.54800000000000004,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.111,"5min":1.1539999999999999,"15min":1.1539999999999999},"last":1.0700000000000001},{"interface":"front","average":{"1min":1.0089999999999999,"5min":1.0289999999999999,"15min":1.042},"min":{"1min":0.72299999999999998,"5min":0.53400000000000003,"15min":0.53400000000000003},"max":{"1min":1.2949999999999999,"5min":1.4410000000000001,"15min":1.4410000000000001},"last":1.0489999999999999}]},{"osd":4,"last update":"Wed Jan 24 02:58:26 2024","interfaces":[{"interface":"back","average":{"1min":0.94399999999999995,"5min":0.98199999999999998,"15min":1.0009999999999999},"min":{"1min":0.73699999999999999,"5min":0.70899999999999996,"15min":0.70899999999999996},"max":{"1min":1.1499999999999999,"5min":1.375,"15min":1.375},"last":0.83999999999999997},{"interface":"front","average":{"1min":0.996,"5min":1.028,"15min":1.0329999999999999},"min":{"1min":0.81399999999999995,"5min":0.72899999999999998,"15min":0.72899999999999998},"max":{"1min":1.179,"5min":1.3340000000000001,"15min":1.3340000000000001},"last":1.2869999999999999}]},{"osd":5,"last update":"Wed Jan 24 02:58:27 2024","interfaces":[{"interface":"back","average":{"1min":1.0960000000000001,"5min":1.141,"15min":1.1499999999999999},"min":{"1min":0.90500000000000003,"5min":0.64400000000000002,"15min":0.64400000000000002},"max":{"1min":1.302,"5min":1.45,"15min":1.45},"last":1.133},{"interface":"front","average":{"1min":1.1910000000000001,"5min":1.167,"15min":1.1659999999999999},"min":{"1min":0.92900000000000005,"5min":0.71299999999999997,"15min":0.71299999999999997},"max":{"1min":1.528,"5min":1.6739999999999999,"15min":1.6739999999999999},"last":1.0029999999999999}]},{"osd":7,"last update":"Wed Jan 24 02:58:42 2024","interfaces":[{"interface":"back","average":{"1min":1.1499999999999999,"5min":1.157,"15min":1.153},"min":{"1min":0.91100000000000003,"5min":0.84699999999999998,"15min":0.84699999999999998},"max":{"1min":1.508,"5min":1.508,"15min":1.508},"last":1.6870000000000001},{"interface":"front","average":{"1min":1.1899999999999999,"5min":1.2030000000000001,"15min":1.2},"min":{"1min":0.96399999999999997,"5min":0.78000000000000003,"15min":0.78000000000000003},"max":{"1min":1.4079999999999999,"5min":1.514,"15min":1.514},"last":1.335}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-01-24T02:58:51.085 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph pg dump --format=json 2024-01-24T02:58:51.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:51 smithi152 bash[16344]: audit 2024-01-24T02:58:50.499712+0000 mgr.smithi152.jkoscf (mgr.14182) 199 : audit [DBG] from='client.14456 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T02:58:51.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:51 smithi152 bash[16344]: audit 2024-01-24T02:58:51.288236+0000 mon.smithi152 (mon.0) 582 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:58:51.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:51 smithi195 bash[19846]: audit 2024-01-24T02:58:50.499712+0000 mgr.smithi152.jkoscf (mgr.14182) 199 : audit [DBG] from='client.14456 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T02:58:51.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:51 smithi195 bash[19846]: audit 2024-01-24T02:58:51.288236+0000 mon.smithi152 (mon.0) 582 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:58:52.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:52 smithi195 bash[19846]: cluster 2024-01-24T02:58:51.137434+0000 mgr.smithi152.jkoscf (mgr.14182) 200 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:52.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:52 smithi152 bash[16344]: cluster 2024-01-24T02:58:51.137434+0000 mgr.smithi152.jkoscf (mgr.14182) 200 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:54.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:54 smithi195 bash[19846]: cluster 2024-01-24T02:58:53.137970+0000 mgr.smithi152.jkoscf (mgr.14182) 201 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:54.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:54 smithi152 bash[16344]: cluster 2024-01-24T02:58:53.137970+0000 mgr.smithi152.jkoscf (mgr.14182) 201 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:55.930 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:58:56.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:56 smithi195 bash[19846]: cluster 2024-01-24T02:58:55.138574+0000 mgr.smithi152.jkoscf (mgr.14182) 202 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:56.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:56 smithi152 bash[16344]: cluster 2024-01-24T02:58:55.138574+0000 mgr.smithi152.jkoscf (mgr.14182) 202 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:58.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:58 smithi195 bash[19846]: cluster 2024-01-24T02:58:57.139100+0000 mgr.smithi152.jkoscf (mgr.14182) 203 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:58.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:58 smithi195 bash[19846]: audit 2024-01-24T02:58:57.157078+0000 mon.smithi152 (mon.0) 583 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:58:58.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:58 smithi195 bash[19846]: audit 2024-01-24T02:58:57.337894+0000 mon.smithi152 (mon.0) 584 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:58:58.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:58 smithi195 bash[19846]: audit 2024-01-24T02:58:57.635438+0000 mon.smithi152 (mon.0) 585 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:58:58.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:58 smithi195 bash[19846]: audit 2024-01-24T02:58:57.636643+0000 mon.smithi152 (mon.0) 586 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T02:58:58.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:58 smithi195 bash[19846]: audit 2024-01-24T02:58:57.642746+0000 mon.smithi152 (mon.0) 587 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:58:58.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:58:58 smithi195 bash[19846]: audit 2024-01-24T02:58:57.649968+0000 mon.smithi152 (mon.0) 588 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T02:58:58.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:58 smithi152 bash[16344]: cluster 2024-01-24T02:58:57.139100+0000 mgr.smithi152.jkoscf (mgr.14182) 203 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:58:58.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:58 smithi152 bash[16344]: audit 2024-01-24T02:58:57.157078+0000 mon.smithi152 (mon.0) 583 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:58:58.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:58 smithi152 bash[16344]: audit 2024-01-24T02:58:57.337894+0000 mon.smithi152 (mon.0) 584 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:58:58.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:58 smithi152 bash[16344]: audit 2024-01-24T02:58:57.635438+0000 mon.smithi152 (mon.0) 585 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:58:58.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:58 smithi152 bash[16344]: audit 2024-01-24T02:58:57.636643+0000 mon.smithi152 (mon.0) 586 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T02:58:58.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:58 smithi152 bash[16344]: audit 2024-01-24T02:58:57.642746+0000 mon.smithi152 (mon.0) 587 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:58:58.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:58:58 smithi152 bash[16344]: audit 2024-01-24T02:58:57.649968+0000 mon.smithi152 (mon.0) 588 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T02:58:59.121 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:58:59.124 INFO:teuthology.orchestra.run.smithi152.stderr:dumped all 2024-01-24T02:58:59.733 INFO:teuthology.orchestra.run.smithi152.stdout:{"pg_ready":true,"pg_map":{"version":187,"stamp":"2024-01-24T02:58:57.138832+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":2379804,"kb_used_data":3036,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548644,"statfs":{"total":767926730752,"available":765489811456,"internally_reserved":0,"allocated":3108864,"data_stored":1226693,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":2433744896},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"0.000000"},"pg_stats":[{"pgid":"1.0","version":"0'0","reported_seq":10,"reported_epoch":39,"state":"active+clean","last_fresh":"2024-01-24T02:55:30.870632+0000","last_change":"2024-01-24T02:55:30.870632+0000","last_active":"2024-01-24T02:55:30.870632+0000","last_peered":"2024-01-24T02:55:30.870632+0000","last_clean":"2024-01-24T02:55:30.870632+0000","last_became_active":"2024-01-24T02:55:30.870331+0000","last_became_peered":"2024-01-24T02:55:30.870331+0000","last_unstale":"2024-01-24T02:55:30.870632+0000","last_undegraded":"2024-01-24T02:55:30.870632+0000","last_fullsized":"2024-01-24T02:55:30.870632+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":21,"last_epoch_clean":39,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-01-24T02:55:10.584343+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-01-24T02:55:10.584343+0000","last_clean_scrub_stamp":"2024-01-24T02:55:10.584343+0000","log_size":0,"ondisk_log_size":0,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":37,"seq":158913789996,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":0.92400000000000004,"5min":0.86699999999999999,"15min":0.85599999999999998},"min":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"max":{"1min":1.099,"5min":1.099,"15min":1.099},"last":0.98899999999999999},{"interface":"front","average":{"1min":0.88600000000000001,"5min":0.85399999999999998,"15min":0.85099999999999998},"min":{"1min":0.65100000000000002,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":1.1539999999999999,"5min":1.1639999999999999,"15min":1.1639999999999999},"last":0.97099999999999997}]},{"osd":1,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":0.83299999999999996,"5min":0.73799999999999999,"15min":0.71799999999999997},"min":{"1min":0.63800000000000001,"5min":0.53500000000000003,"15min":0.53500000000000003},"max":{"1min":1.1950000000000001,"5min":1.2889999999999999,"15min":1.2889999999999999},"last":0.86499999999999999},{"interface":"front","average":{"1min":0.81399999999999995,"5min":0.83699999999999997,"15min":0.83699999999999997},"min":{"1min":0.60999999999999999,"5min":0.49199999999999999,"15min":0.49199999999999999},"max":{"1min":1.113,"5min":1.141,"15min":1.141},"last":0.77400000000000002}]},{"osd":2,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":0.83699999999999997,"5min":0.84199999999999997,"15min":0.84399999999999997},"min":{"1min":0.58099999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":1.0629999999999999,"5min":1.1259999999999999,"15min":1.1259999999999999},"last":0.70199999999999996},{"interface":"front","average":{"1min":0.97399999999999998,"5min":0.91000000000000003,"15min":0.89200000000000002},"min":{"1min":0.70799999999999996,"5min":0.66600000000000004,"15min":0.66600000000000004},"max":{"1min":1.212,"5min":1.212,"15min":1.212},"last":1.131}]},{"osd":3,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":0.93500000000000005,"5min":0.877,"15min":0.85599999999999998},"min":{"1min":0.57699999999999996,"5min":0.57699999999999996,"15min":0.57699999999999996},"max":{"1min":1.1519999999999999,"5min":1.345,"15min":1.345},"last":0.90600000000000003},{"interface":"front","average":{"1min":0.96199999999999997,"5min":0.90100000000000002,"15min":0.88500000000000001},"min":{"1min":0.68000000000000005,"5min":0.56499999999999995,"15min":0.56499999999999995},"max":{"1min":1.286,"5min":1.3420000000000001,"15min":1.3420000000000001},"last":0.83399999999999996}]},{"osd":4,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":1.002,"5min":1.0049999999999999,"15min":1.0049999999999999},"min":{"1min":0.84199999999999997,"5min":0.71199999999999997,"15min":0.71199999999999997},"max":{"1min":1.139,"5min":1.24,"15min":1.24},"last":0.93899999999999995},{"interface":"front","average":{"1min":1.075,"5min":1.0649999999999999,"15min":1.0649999999999999},"min":{"1min":0.752,"5min":0.752,"15min":0.752},"max":{"1min":1.4830000000000001,"5min":1.4830000000000001,"15min":1.4830000000000001},"last":1.081}]},{"osd":5,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":1.143,"5min":1.046,"15min":1.0209999999999999},"min":{"1min":0.84999999999999998,"5min":0.73099999999999998,"15min":0.73099999999999998},"max":{"1min":1.538,"5min":1.538,"15min":1.538},"last":1.1799999999999999},{"interface":"front","average":{"1min":1.085,"5min":1.0800000000000001,"15min":1.085},"min":{"1min":0.627,"5min":0.627,"15min":0.627},"max":{"1min":1.3149999999999999,"5min":1.627,"15min":1.627},"last":1.02}]},{"osd":6,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":1.177,"5min":1.161,"15min":1.1639999999999999},"min":{"1min":0.81200000000000006,"5min":0.81200000000000006,"15min":0.81200000000000006},"max":{"1min":1.6299999999999999,"5min":1.6299999999999999,"15min":1.6299999999999999},"last":1.0620000000000001},{"interface":"front","average":{"1min":1.1699999999999999,"5min":1.169,"15min":1.169},"min":{"1min":0.94799999999999995,"5min":0.83599999999999997,"15min":0.83599999999999997},"max":{"1min":1.496,"5min":1.9370000000000001,"15min":1.9370000000000001},"last":1.0289999999999999}]}]},{"osd":5,"up_from":33,"seq":141733920814,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":0.874,"5min":0.82799999999999996,"15min":0.81200000000000006},"min":{"1min":0.629,"5min":0.629,"15min":0.629},"max":{"1min":1.399,"5min":1.399,"15min":1.399},"last":1.1060000000000001},{"interface":"front","average":{"1min":0.86099999999999999,"5min":0.88300000000000001,"15min":0.88700000000000001},"min":{"1min":0.67300000000000004,"5min":0.61899999999999999,"15min":0.61899999999999999},"max":{"1min":1.1659999999999999,"5min":1.2250000000000001,"15min":1.2250000000000001},"last":0.78600000000000003}]},{"osd":1,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":0.72899999999999998,"5min":0.70999999999999996,"15min":0.69399999999999995},"min":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"max":{"1min":1.1619999999999999,"5min":1.1619999999999999,"15min":1.1619999999999999},"last":0.873},{"interface":"front","average":{"1min":0.78200000000000003,"5min":0.755,"15min":0.72699999999999998},"min":{"1min":0.46600000000000003,"5min":0.41999999999999998,"15min":0.41999999999999998},"max":{"1min":1.1599999999999999,"5min":1.258,"15min":1.258},"last":0.998}]},{"osd":2,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":0.97099999999999997,"5min":0.92100000000000004,"15min":0.90100000000000002},"min":{"1min":0.64300000000000002,"5min":0.58199999999999996,"15min":0.58199999999999996},"max":{"1min":1.2949999999999999,"5min":1.2949999999999999,"15min":1.2949999999999999},"last":0.90900000000000003},{"interface":"front","average":{"1min":0.98799999999999999,"5min":0.93700000000000006,"15min":0.92300000000000004},"min":{"1min":0.63,"5min":0.57199999999999995,"15min":0.57199999999999995},"max":{"1min":1.1719999999999999,"5min":1.639,"15min":1.639},"last":1.21}]},{"osd":3,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":0.82499999999999996,"5min":0.82799999999999996,"15min":0.81999999999999995},"min":{"1min":0.53800000000000003,"5min":0.441,"15min":0.441},"max":{"1min":1.2150000000000001,"5min":1.3069999999999999,"15min":1.3069999999999999},"last":0.92800000000000005},{"interface":"front","average":{"1min":0.89300000000000002,"5min":0.84499999999999997,"15min":0.82199999999999995},"min":{"1min":0.70399999999999996,"5min":0.45800000000000002,"15min":0.45800000000000002},"max":{"1min":1.1319999999999999,"5min":1.2529999999999999,"15min":1.2529999999999999},"last":0.72099999999999997}]},{"osd":4,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":1.0009999999999999,"5min":0.97299999999999998,"15min":0.94999999999999996},"min":{"1min":0.68300000000000005,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.4370000000000001,"5min":1.444,"15min":1.444},"last":1.036},{"interface":"front","average":{"1min":1.042,"5min":1.026,"15min":1},"min":{"1min":0.64800000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"max":{"1min":1.4790000000000001,"5min":1.4790000000000001,"15min":1.4790000000000001},"last":1.242}]},{"osd":6,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":1.05,"5min":1.0649999999999999,"15min":1.0549999999999999},"min":{"1min":0.76800000000000002,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":1.3029999999999999,"5min":1.643,"15min":1.643},"last":1.071},{"interface":"front","average":{"1min":1.0640000000000001,"5min":1.0489999999999999,"15min":1.022},"min":{"1min":0.76000000000000001,"5min":0.66700000000000004,"15min":0.66700000000000004},"max":{"1min":1.3320000000000001,"5min":1.4179999999999999,"15min":1.4179999999999999},"last":1.131}]},{"osd":7,"last update":"Wed Jan 24 02:58:38 2024","interfaces":[{"interface":"back","average":{"1min":1.036,"5min":1.071,"15min":1.0489999999999999},"min":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"max":{"1min":1.3919999999999999,"5min":1.528,"15min":1.528},"last":1.1739999999999999},{"interface":"front","average":{"1min":1.0760000000000001,"5min":1.101,"15min":1.085},"min":{"1min":0.67000000000000004,"5min":0.56399999999999995,"15min":0.56399999999999995},"max":{"1min":1.3620000000000001,"5min":1.5880000000000001,"15min":1.5880000000000001},"last":1.2889999999999999}]}]},{"osd":1,"up_from":20,"seq":85899345968,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297472,"kb_used_data":376,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443584,"statfs":{"total":95990841344,"available":95686230016,"internally_reserved":0,"allocated":385024,"data_stored":153061,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:13 2024","interfaces":[{"interface":"back","average":{"1min":0.96099999999999997,"5min":0.88700000000000001,"15min":0.86699999999999999},"min":{"1min":0.61499999999999999,"5min":0.53900000000000003,"15min":0.53900000000000003},"max":{"1min":1.264,"5min":1.264,"15min":1.264},"last":0.622},{"interface":"front","average":{"1min":0.88900000000000001,"5min":0.88500000000000001,"15min":0.88},"min":{"1min":0.72799999999999998,"5min":0.68700000000000006,"15min":0.68700000000000006},"max":{"1min":1.1739999999999999,"5min":1.1739999999999999,"15min":1.1739999999999999},"last":0.82299999999999995}]},{"osd":2,"last update":"Wed Jan 24 02:58:13 2024","interfaces":[{"interface":"back","average":{"1min":0.81299999999999994,"5min":0.77300000000000002,"15min":0.755},"min":{"1min":0.65600000000000003,"5min":0.5,"15min":0.5},"max":{"1min":1.006,"5min":1.1830000000000001,"15min":1.1830000000000001},"last":0.997},{"interface":"front","average":{"1min":0.86799999999999999,"5min":0.875,"15min":0.88500000000000001},"min":{"1min":0.64200000000000002,"5min":0.58399999999999996,"15min":0.58399999999999996},"max":{"1min":1.103,"5min":1.3959999999999999,"15min":1.3959999999999999},"last":0.92000000000000004}]},{"osd":3,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":1.0580000000000001,"5min":0.98999999999999999,"15min":0.97999999999999998},"min":{"1min":0.73999999999999999,"5min":0.46999999999999997,"15min":0.46999999999999997},"max":{"1min":1.3360000000000001,"5min":1.7130000000000001,"15min":1.7130000000000001},"last":1.278},{"interface":"front","average":{"1min":0.92300000000000004,"5min":0.90800000000000003,"15min":0.89400000000000002},"min":{"1min":0.57599999999999996,"5min":0.378,"15min":0.378},"max":{"1min":1.204,"5min":1.7410000000000001,"15min":1.7410000000000001},"last":1.103}]},{"osd":4,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":1.0640000000000001,"5min":0.98199999999999998,"15min":0.96399999999999997},"min":{"1min":0.78000000000000003,"5min":0.63300000000000001,"15min":0.63300000000000001},"max":{"1min":1.3959999999999999,"5min":1.4370000000000001,"15min":1.4370000000000001},"last":0.85899999999999999},{"interface":"front","average":{"1min":1.0549999999999999,"5min":1.002,"15min":1.004},"min":{"1min":0.85399999999999998,"5min":0.55600000000000005,"15min":0.55600000000000005},"max":{"1min":1.377,"5min":1.776,"15min":1.776},"last":1.03}]},{"osd":5,"last update":"Wed Jan 24 02:58:28 2024","interfaces":[{"interface":"back","average":{"1min":0.96299999999999997,"5min":0.872,"15min":0.85799999999999998},"min":{"1min":0.66000000000000003,"5min":0.55700000000000005,"15min":0.55700000000000005},"max":{"1min":1.2969999999999999,"5min":1.8759999999999999,"15min":1.8759999999999999},"last":1.0600000000000001},{"interface":"front","average":{"1min":1.0509999999999999,"5min":1.008,"15min":1.008},"min":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"max":{"1min":1.337,"5min":1.4059999999999999,"15min":1.4059999999999999},"last":0.93500000000000005}]},{"osd":6,"last update":"Wed Jan 24 02:58:28 2024","interfaces":[{"interface":"back","average":{"1min":1.0980000000000001,"5min":1.0449999999999999,"15min":1.038},"min":{"1min":0.89200000000000002,"5min":0.55200000000000005,"15min":0.55200000000000005},"max":{"1min":1.4299999999999999,"5min":1.444,"15min":1.444},"last":1.214},{"interface":"front","average":{"1min":1.0820000000000001,"5min":1.026,"15min":1.016},"min":{"1min":0.88400000000000001,"5min":0.69799999999999995,"15min":0.69799999999999995},"max":{"1min":1.3999999999999999,"5min":1.78,"15min":1.78},"last":0.95299999999999996}]},{"osd":7,"last update":"Wed Jan 24 02:58:36 2024","interfaces":[{"interface":"back","average":{"1min":1.1519999999999999,"5min":1.0640000000000001,"15min":1.0600000000000001},"min":{"1min":0.81699999999999995,"5min":0.51200000000000001,"15min":0.51200000000000001},"max":{"1min":1.494,"5min":1.516,"15min":1.516},"last":1.127},{"interface":"front","average":{"1min":1.2070000000000001,"5min":1.1279999999999999,"15min":1.113},"min":{"1min":0.66100000000000003,"5min":0.45900000000000002,"15min":0.45900000000000002},"max":{"1min":1.46,"5min":1.482,"15min":1.482},"last":1.1850000000000001}]}]},{"osd":0,"up_from":16,"seq":68719476785,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Wed Jan 24 02:58:12 2024","interfaces":[{"interface":"back","average":{"1min":0.89800000000000002,"5min":0.84399999999999997,"15min":0.82999999999999996},"min":{"1min":0.63800000000000001,"5min":0.53900000000000003,"15min":0.53900000000000003},"max":{"1min":1.171,"5min":1.171,"15min":1.171},"last":0.78600000000000003},{"interface":"front","average":{"1min":0.84299999999999997,"5min":0.81200000000000006,"15min":0.81399999999999995},"min":{"1min":0.70999999999999996,"5min":0.57499999999999996,"15min":0.57499999999999996},"max":{"1min":1.103,"5min":1.103,"15min":1.103},"last":0.80900000000000005}]},{"osd":2,"last update":"Wed Jan 24 02:58:12 2024","interfaces":[{"interface":"back","average":{"1min":0.78100000000000003,"5min":0.79600000000000004,"15min":0.80100000000000005},"min":{"1min":0.58499999999999996,"5min":0.34100000000000003,"15min":0.34100000000000003},"max":{"1min":1.2030000000000001,"5min":1.274,"15min":1.274},"last":0.86399999999999999},{"interface":"front","average":{"1min":0.81299999999999994,"5min":0.81699999999999995,"15min":0.82999999999999996},"min":{"1min":0.57499999999999996,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":1.0780000000000001,"5min":1.375,"15min":1.375},"last":0.89600000000000002}]},{"osd":3,"last update":"Wed Jan 24 02:58:20 2024","interfaces":[{"interface":"back","average":{"1min":1.0469999999999999,"5min":1.0289999999999999,"15min":1.0189999999999999},"min":{"1min":0.77000000000000002,"5min":0.67200000000000004,"15min":0.67200000000000004},"max":{"1min":1.337,"5min":1.5349999999999999,"15min":1.5349999999999999},"last":1.1120000000000001},{"interface":"front","average":{"1min":0.99299999999999999,"5min":1.006,"15min":1.0109999999999999},"min":{"1min":0.77100000000000002,"5min":0.63700000000000001,"15min":0.63700000000000001},"max":{"1min":1.3380000000000001,"5min":1.401,"15min":1.401},"last":1.008}]},{"osd":4,"last update":"Wed Jan 24 02:58:20 2024","interfaces":[{"interface":"back","average":{"1min":0.95599999999999996,"5min":0.92500000000000004,"15min":0.92300000000000004},"min":{"1min":0.70799999999999996,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":1.2150000000000001,"5min":1.4410000000000001,"15min":1.4410000000000001},"last":1.03},{"interface":"front","average":{"1min":0.93400000000000005,"5min":0.93899999999999995,"15min":0.94799999999999995},"min":{"1min":0.68600000000000005,"5min":0.50600000000000001,"15min":0.50600000000000001},"max":{"1min":1.234,"5min":1.234,"15min":1.234},"last":0.68799999999999994}]},{"osd":5,"last update":"Wed Jan 24 02:58:29 2024","interfaces":[{"interface":"back","average":{"1min":0.90900000000000003,"5min":0.95699999999999996,"15min":0.96699999999999997},"min":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"max":{"1min":1.3979999999999999,"5min":1.3979999999999999,"15min":1.3979999999999999},"last":0.98099999999999998},{"interface":"front","average":{"1min":1.0960000000000001,"5min":1.103,"15min":1.101},"min":{"1min":0.85899999999999999,"5min":0.84099999999999997,"15min":0.84099999999999997},"max":{"1min":1.621,"5min":1.6299999999999999,"15min":1.6299999999999999},"last":1.1699999999999999}]},{"osd":6,"last update":"Wed Jan 24 02:58:20 2024","interfaces":[{"interface":"back","average":{"1min":1.0800000000000001,"5min":1.1060000000000001,"15min":1.111},"min":{"1min":0.80400000000000005,"5min":0.80400000000000005,"15min":0.80400000000000005},"max":{"1min":1.429,"5min":1.722,"15min":1.722},"last":1.2150000000000001},{"interface":"front","average":{"1min":1.145,"5min":1.151,"15min":1.1699999999999999},"min":{"1min":0.89300000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"max":{"1min":1.4890000000000001,"5min":1.583,"15min":1.583},"last":1.0940000000000001}]},{"osd":7,"last update":"Wed Jan 24 02:58:37 2024","interfaces":[{"interface":"back","average":{"1min":1.1000000000000001,"5min":1.1539999999999999,"15min":1.1639999999999999},"min":{"1min":0.91600000000000004,"5min":0.86099999999999999,"15min":0.86099999999999999},"max":{"1min":1.5840000000000001,"5min":1.6659999999999999,"15min":1.6659999999999999},"last":1.2949999999999999},{"interface":"front","average":{"1min":1.23,"5min":1.2869999999999999,"15min":1.2969999999999999},"min":{"1min":0.97099999999999997,"5min":0.97099999999999997,"15min":0.97099999999999997},"max":{"1min":1.651,"5min":1.806,"15min":1.806},"last":1.3160000000000001}]}]},{"osd":2,"up_from":20,"seq":85899345969,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:16 2024","interfaces":[{"interface":"back","average":{"1min":0.65400000000000003,"5min":0.66200000000000003,"15min":0.66900000000000004},"min":{"1min":0.52000000000000002,"5min":0.47699999999999998,"15min":0.47699999999999998},"max":{"1min":0.94499999999999995,"5min":0.99299999999999999,"15min":0.99299999999999999},"last":0.68899999999999995},{"interface":"front","average":{"1min":0.80300000000000005,"5min":0.77600000000000002,"15min":0.77500000000000002},"min":{"1min":0.45000000000000001,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":1.272,"5min":1.272,"15min":1.272},"last":0.94699999999999995}]},{"osd":1,"last update":"Wed Jan 24 02:58:16 2024","interfaces":[{"interface":"back","average":{"1min":0.90600000000000003,"5min":0.88700000000000001,"15min":0.88},"min":{"1min":0.71599999999999997,"5min":0.66500000000000004,"15min":0.66500000000000004},"max":{"1min":1.2050000000000001,"5min":1.3999999999999999,"15min":1.3999999999999999},"last":0.89600000000000002},{"interface":"front","average":{"1min":0.93999999999999995,"5min":0.89000000000000001,"15min":0.88400000000000001},"min":{"1min":0.57299999999999995,"5min":0.52300000000000002,"15min":0.52300000000000002},"max":{"1min":1.28,"5min":1.28,"15min":1.28},"last":1.101}]},{"osd":3,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":0.91800000000000004,"5min":0.94999999999999996,"15min":0.94899999999999995},"min":{"1min":0.70999999999999996,"5min":0.67100000000000004,"15min":0.67100000000000004},"max":{"1min":1.21,"5min":1.21,"15min":1.21},"last":0.78800000000000003},{"interface":"front","average":{"1min":1.0680000000000001,"5min":1.034,"15min":1.02},"min":{"1min":0.84499999999999997,"5min":0.66000000000000003,"15min":0.66000000000000003},"max":{"1min":1.363,"5min":1.363,"15min":1.363},"last":1.179}]},{"osd":4,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":0.82999999999999996,"5min":0.84499999999999997,"15min":0.84799999999999998},"min":{"1min":0.624,"5min":0.59799999999999998,"15min":0.59799999999999998},"max":{"1min":1.3089999999999999,"5min":1.3089999999999999,"15min":1.3089999999999999},"last":1.0149999999999999},{"interface":"front","average":{"1min":0.86599999999999999,"5min":0.90200000000000002,"15min":0.90400000000000003},"min":{"1min":0.66800000000000004,"5min":0.626,"15min":0.626},"max":{"1min":1.1180000000000001,"5min":1.2070000000000001,"15min":1.2070000000000001},"last":0.873}]},{"osd":5,"last update":"Wed Jan 24 02:58:34 2024","interfaces":[{"interface":"back","average":{"1min":1.022,"5min":1.0269999999999999,"15min":1.0289999999999999},"min":{"1min":0.71799999999999997,"5min":0.71799999999999997,"15min":0.71799999999999997},"max":{"1min":1.212,"5min":1.323,"15min":1.323},"last":0.995},{"interface":"front","average":{"1min":1.099,"5min":1.0780000000000001,"15min":1.079},"min":{"1min":0.66800000000000004,"5min":0.66800000000000004,"15min":0.66800000000000004},"max":{"1min":1.3799999999999999,"5min":1.397,"15min":1.397},"last":1.284}]},{"osd":6,"last update":"Wed Jan 24 02:58:23 2024","interfaces":[{"interface":"back","average":{"1min":1.05,"5min":1.05,"15min":1.052},"min":{"1min":0.497,"5min":0.497,"15min":0.497},"max":{"1min":1.4259999999999999,"5min":1.5069999999999999,"15min":1.5069999999999999},"last":1.399},{"interface":"front","average":{"1min":1.0840000000000001,"5min":1.125,"15min":1.1379999999999999},"min":{"1min":0.58299999999999996,"5min":0.58299999999999996,"15min":0.58299999999999996},"max":{"1min":1.284,"5min":1.671,"15min":1.671},"last":1.0780000000000001}]},{"osd":7,"last update":"Wed Jan 24 02:58:34 2024","interfaces":[{"interface":"back","average":{"1min":1.151,"5min":1.1559999999999999,"15min":1.1519999999999999},"min":{"1min":0.83299999999999996,"5min":0.83299999999999996,"15min":0.83299999999999996},"max":{"1min":1.341,"5min":1.611,"15min":1.611},"last":1.1519999999999999},{"interface":"front","average":{"1min":1.139,"5min":1.1439999999999999,"15min":1.1499999999999999},"min":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"max":{"1min":1.6479999999999999,"5min":1.6479999999999999,"15min":1.6479999999999999},"last":1.1339999999999999}]}]},{"osd":4,"up_from":25,"seq":107374182447,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":0.69999999999999996,"5min":0.72899999999999998,"15min":0.73799999999999999},"min":{"1min":0.58799999999999997,"5min":0.48599999999999999,"15min":0.48599999999999999},"max":{"1min":0.96799999999999997,"5min":1.107,"15min":1.107},"last":0.59299999999999997},{"interface":"front","average":{"1min":0.82599999999999996,"5min":0.83699999999999997,"15min":0.85099999999999998},"min":{"1min":0.67500000000000004,"5min":0.5,"15min":0.5},"max":{"1min":1.0649999999999999,"5min":1.2649999999999999,"15min":1.2649999999999999},"last":0.79400000000000004}]},{"osd":1,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":0.85499999999999998,"5min":0.92900000000000005,"15min":0.95099999999999996},"min":{"1min":0.63800000000000001,"5min":0.55200000000000005,"15min":0.55200000000000005},"max":{"1min":1.278,"5min":2.02,"15min":2.02},"last":1.071},{"interface":"front","average":{"1min":0.88900000000000001,"5min":0.91300000000000003,"15min":0.92800000000000005},"min":{"1min":0.68200000000000005,"5min":0.61399999999999999,"15min":0.61399999999999999},"max":{"1min":1.123,"5min":1.389,"15min":1.389},"last":1.1930000000000001}]},{"osd":2,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":0.85199999999999998,"5min":0.85999999999999999,"15min":0.86599999999999999},"min":{"1min":0.64200000000000002,"5min":0.47299999999999998,"15min":0.47299999999999998},"max":{"1min":1.163,"5min":1.4650000000000001,"15min":1.4650000000000001},"last":0.90100000000000002},{"interface":"front","average":{"1min":0.874,"5min":0.83599999999999997,"15min":0.81799999999999995},"min":{"1min":0.69099999999999995,"5min":0.64300000000000002,"15min":0.64300000000000002},"max":{"1min":1.1040000000000001,"5min":1.3320000000000001,"15min":1.3320000000000001},"last":0.83099999999999996}]},{"osd":3,"last update":"Wed Jan 24 02:58:19 2024","interfaces":[{"interface":"back","average":{"1min":1.01,"5min":0.93700000000000006,"15min":0.92600000000000005},"min":{"1min":0.78600000000000003,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.22,"5min":1.22,"15min":1.22},"last":0.96999999999999997},{"interface":"front","average":{"1min":1.0089999999999999,"5min":0.999,"15min":0.98999999999999999},"min":{"1min":0.80400000000000005,"5min":0.60099999999999998,"15min":0.60099999999999998},"max":{"1min":1.3029999999999999,"5min":1.3859999999999999,"15min":1.3859999999999999},"last":0.95099999999999996}]},{"osd":5,"last update":"Wed Jan 24 02:58:29 2024","interfaces":[{"interface":"back","average":{"1min":1.0680000000000001,"5min":1.0620000000000001,"15min":1.0660000000000001},"min":{"1min":0.81200000000000006,"5min":0.76300000000000001,"15min":0.76300000000000001},"max":{"1min":1.456,"5min":1.456,"15min":1.456},"last":0.85699999999999998},{"interface":"front","average":{"1min":1.0780000000000001,"5min":1.1240000000000001,"15min":1.1419999999999999},"min":{"1min":0.90800000000000003,"5min":0.753,"15min":0.753},"max":{"1min":1.4530000000000001,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":1.006}]},{"osd":6,"last update":"Wed Jan 24 02:58:25 2024","interfaces":[{"interface":"back","average":{"1min":1.1120000000000001,"5min":1.0720000000000001,"15min":1.0780000000000001},"min":{"1min":0.90600000000000003,"5min":0.77500000000000002,"15min":0.77500000000000002},"max":{"1min":1.367,"5min":1.367,"15min":1.367},"last":0.999},{"interface":"front","average":{"1min":1.1519999999999999,"5min":1.105,"15min":1.107},"min":{"1min":0.877,"5min":0.70199999999999996,"15min":0.70199999999999996},"max":{"1min":1.3340000000000001,"5min":1.417,"15min":1.417},"last":1.0840000000000001}]},{"osd":7,"last update":"Wed Jan 24 02:58:29 2024","interfaces":[{"interface":"back","average":{"1min":1.24,"5min":1.1919999999999999,"15min":1.1919999999999999},"min":{"1min":1.1180000000000001,"5min":0.84399999999999997,"15min":0.84399999999999997},"max":{"1min":1.522,"5min":1.522,"15min":1.522},"last":1.161},{"interface":"front","average":{"1min":1.2090000000000001,"5min":1.1359999999999999,"15min":1.1140000000000001},"min":{"1min":0.91000000000000003,"5min":0.80800000000000005,"15min":0.80800000000000005},"max":{"1min":1.413,"5min":1.4159999999999999,"15min":1.4159999999999999},"last":1.1399999999999999}]}]},{"osd":3,"up_from":27,"seq":115964117039,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:21 2024","interfaces":[{"interface":"back","average":{"1min":0.90300000000000002,"5min":0.90500000000000003,"15min":0.90900000000000003},"min":{"1min":0.621,"5min":0.47799999999999998,"15min":0.47799999999999998},"max":{"1min":1.157,"5min":1.1950000000000001,"15min":1.1950000000000001},"last":0.71499999999999997},{"interface":"front","average":{"1min":0.875,"5min":0.89100000000000001,"15min":0.89700000000000002},"min":{"1min":0.505,"5min":0.505,"15min":0.505},"max":{"1min":1.0920000000000001,"5min":1.2010000000000001,"15min":1.2010000000000001},"last":0.84899999999999998}]},{"osd":1,"last update":"Wed Jan 24 02:58:21 2024","interfaces":[{"interface":"back","average":{"1min":0.71499999999999997,"5min":0.73699999999999999,"15min":0.73699999999999999},"min":{"1min":0.47099999999999997,"5min":0.41899999999999998,"15min":0.41899999999999998},"max":{"1min":1.0449999999999999,"5min":1.0509999999999999,"15min":1.0509999999999999},"last":0.57399999999999995},{"interface":"front","average":{"1min":0.72499999999999998,"5min":0.73899999999999999,"15min":0.72899999999999998},"min":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"max":{"1min":1.0580000000000001,"5min":1.165,"15min":1.165},"last":0.60099999999999998}]},{"osd":2,"last update":"Wed Jan 24 02:58:21 2024","interfaces":[{"interface":"back","average":{"1min":0.87,"5min":0.92600000000000005,"15min":0.94399999999999995},"min":{"1min":0.495,"5min":0.495,"15min":0.495},"max":{"1min":1.3740000000000001,"5min":1.3740000000000001,"15min":1.3740000000000001},"last":0.96599999999999997},{"interface":"front","average":{"1min":0.96899999999999997,"5min":0.96399999999999997,"15min":0.96499999999999997},"min":{"1min":0.747,"5min":0.58999999999999997,"15min":0.58999999999999997},"max":{"1min":1.2649999999999999,"5min":1.2649999999999999,"15min":1.2649999999999999},"last":0.76700000000000002}]},{"osd":4,"last update":"Wed Jan 24 02:58:21 2024","interfaces":[{"interface":"back","average":{"1min":0.86199999999999999,"5min":0.89200000000000002,"15min":0.89400000000000002},"min":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"max":{"1min":1.1819999999999999,"5min":1.1839999999999999,"15min":1.1839999999999999},"last":0.95099999999999996},{"interface":"front","average":{"1min":0.91700000000000004,"5min":1.028,"15min":1.0680000000000001},"min":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"max":{"1min":1.2030000000000001,"5min":1.397,"15min":1.397},"last":1.0249999999999999}]},{"osd":5,"last update":"Wed Jan 24 02:58:33 2024","interfaces":[{"interface":"back","average":{"1min":0.878,"5min":0.90800000000000003,"15min":0.92200000000000004},"min":{"1min":0.58199999999999996,"5min":0.58199999999999996,"15min":0.58199999999999996},"max":{"1min":1.1479999999999999,"5min":1.3129999999999999,"15min":1.3129999999999999},"last":0.89200000000000002},{"interface":"front","average":{"1min":0.93999999999999995,"5min":1.01,"15min":1.028},"min":{"1min":0.53500000000000003,"5min":0.39900000000000002,"15min":0.39900000000000002},"max":{"1min":1.268,"5min":1.3320000000000001,"15min":1.3320000000000001},"last":0.91500000000000004}]},{"osd":6,"last update":"Wed Jan 24 02:58:21 2024","interfaces":[{"interface":"back","average":{"1min":1.0620000000000001,"5min":1.052,"15min":1.05},"min":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"max":{"1min":1.3049999999999999,"5min":1.536,"15min":1.536},"last":1.1819999999999999},{"interface":"front","average":{"1min":1.077,"5min":1.155,"15min":1.1779999999999999},"min":{"1min":0.58499999999999996,"5min":0.58499999999999996,"15min":0.58499999999999996},"max":{"1min":1.329,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":1.0820000000000001}]},{"osd":7,"last update":"Wed Jan 24 02:58:35 2024","interfaces":[{"interface":"back","average":{"1min":1.0960000000000001,"5min":1.1220000000000001,"15min":1.1319999999999999},"min":{"1min":0.64200000000000002,"5min":0.58399999999999996,"15min":0.58399999999999996},"max":{"1min":1.371,"5min":1.5049999999999999,"15min":1.5049999999999999},"last":1.1339999999999999},{"interface":"front","average":{"1min":1.0860000000000001,"5min":1.1240000000000001,"15min":1.125},"min":{"1min":0.65700000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.3979999999999999,"5min":1.3979999999999999,"15min":1.3979999999999999},"last":1.056}]}]},{"osd":6,"up_from":29,"seq":124554051629,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":153376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Jan 24 02:58:26 2024","interfaces":[{"interface":"back","average":{"1min":0.64300000000000002,"5min":0.69699999999999995,"15min":0.71099999999999997},"min":{"1min":0.502,"5min":0.44900000000000001,"15min":0.44900000000000001},"max":{"1min":0.97699999999999998,"5min":1.268,"15min":1.268},"last":0.66200000000000003},{"interface":"front","average":{"1min":0.80400000000000005,"5min":0.81299999999999994,"15min":0.81599999999999995},"min":{"1min":0.627,"5min":0.56499999999999995,"15min":0.56499999999999995},"max":{"1min":0.98299999999999998,"5min":1.2450000000000001,"15min":1.2450000000000001},"last":0.79200000000000004}]},{"osd":1,"last update":"Wed Jan 24 02:58:26 2024","interfaces":[{"interface":"back","average":{"1min":0.85399999999999998,"5min":0.83599999999999997,"15min":0.83299999999999996},"min":{"1min":0.66900000000000004,"5min":0.621,"15min":0.621},"max":{"1min":1.121,"5min":1.121,"15min":1.121},"last":0.89900000000000002},{"interface":"front","average":{"1min":0.94299999999999995,"5min":0.94199999999999995,"15min":0.94399999999999995},"min":{"1min":0.77800000000000002,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.119,"5min":1.26,"15min":1.26},"last":1.004}]},{"osd":2,"last update":"Wed Jan 24 02:58:26 2024","interfaces":[{"interface":"back","average":{"1min":0.85499999999999998,"5min":0.89000000000000001,"15min":0.89800000000000002},"min":{"1min":0.69599999999999995,"5min":0.47799999999999998,"15min":0.47799999999999998},"max":{"1min":1.2,"5min":1.325,"15min":1.325},"last":0.93000000000000005},{"interface":"front","average":{"1min":0.92100000000000004,"5min":0.85599999999999998,"15min":0.85799999999999998},"min":{"1min":0.65600000000000003,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":1.117,"5min":1.1619999999999999,"15min":1.1619999999999999},"last":0.86899999999999999}]},{"osd":3,"last update":"Wed Jan 24 02:58:26 2024","interfaces":[{"interface":"back","average":{"1min":0.871,"5min":0.91100000000000003,"15min":0.92400000000000004},"min":{"1min":0.54800000000000004,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.111,"5min":1.1539999999999999,"15min":1.1539999999999999},"last":0.83499999999999996},{"interface":"front","average":{"1min":1.0089999999999999,"5min":1.0289999999999999,"15min":1.042},"min":{"1min":0.72299999999999998,"5min":0.53400000000000003,"15min":0.53400000000000003},"max":{"1min":1.2949999999999999,"5min":1.4410000000000001,"15min":1.4410000000000001},"last":1.1259999999999999}]},{"osd":4,"last update":"Wed Jan 24 02:58:26 2024","interfaces":[{"interface":"back","average":{"1min":0.94399999999999995,"5min":0.98199999999999998,"15min":1.0009999999999999},"min":{"1min":0.73699999999999999,"5min":0.70899999999999996,"15min":0.70899999999999996},"max":{"1min":1.1499999999999999,"5min":1.375,"15min":1.375},"last":0.95899999999999996},{"interface":"front","average":{"1min":0.996,"5min":1.028,"15min":1.0329999999999999},"min":{"1min":0.81399999999999995,"5min":0.72899999999999998,"15min":0.72899999999999998},"max":{"1min":1.179,"5min":1.3340000000000001,"15min":1.3340000000000001},"last":1.0620000000000001}]},{"osd":5,"last update":"Wed Jan 24 02:58:27 2024","interfaces":[{"interface":"back","average":{"1min":1.0960000000000001,"5min":1.141,"15min":1.1499999999999999},"min":{"1min":0.90500000000000003,"5min":0.64400000000000002,"15min":0.64400000000000002},"max":{"1min":1.302,"5min":1.45,"15min":1.45},"last":1.1899999999999999},{"interface":"front","average":{"1min":1.1910000000000001,"5min":1.167,"15min":1.1659999999999999},"min":{"1min":0.92900000000000005,"5min":0.71299999999999997,"15min":0.71299999999999997},"max":{"1min":1.528,"5min":1.6739999999999999,"15min":1.6739999999999999},"last":1.024}]},{"osd":7,"last update":"Wed Jan 24 02:58:42 2024","interfaces":[{"interface":"back","average":{"1min":1.1499999999999999,"5min":1.157,"15min":1.153},"min":{"1min":0.91100000000000003,"5min":0.84699999999999998,"15min":0.84699999999999998},"max":{"1min":1.508,"5min":1.508,"15min":1.508},"last":1.246},{"interface":"front","average":{"1min":1.1899999999999999,"5min":1.2030000000000001,"15min":1.2},"min":{"1min":0.96399999999999997,"5min":0.78000000000000003,"15min":0.78000000000000003},"max":{"1min":1.4079999999999999,"5min":1.514,"15min":1.514},"last":1.2350000000000001}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-01-24T02:58:59.734 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-01-24T02:58:59.735 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-01-24T02:58:59.735 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-01-24T02:58:59.735 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph health --format=json 2024-01-24T02:59:00.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:00 smithi195 bash[19846]: audit 2024-01-24T02:58:59.113410+0000 mgr.smithi152.jkoscf (mgr.14182) 204 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T02:59:00.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:00 smithi195 bash[19846]: cluster 2024-01-24T02:58:59.139776+0000 mgr.smithi152.jkoscf (mgr.14182) 205 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:00.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:00 smithi152 bash[16344]: audit 2024-01-24T02:58:59.113410+0000 mgr.smithi152.jkoscf (mgr.14182) 204 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T02:59:00.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:00 smithi152 bash[16344]: cluster 2024-01-24T02:58:59.139776+0000 mgr.smithi152.jkoscf (mgr.14182) 205 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:02.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:02 smithi195 bash[19846]: cluster 2024-01-24T02:59:01.140424+0000 mgr.smithi152.jkoscf (mgr.14182) 206 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:02.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:02 smithi152 bash[16344]: cluster 2024-01-24T02:59:01.140424+0000 mgr.smithi152.jkoscf (mgr.14182) 206 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:04.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:04 smithi195 bash[19846]: cluster 2024-01-24T02:59:03.141027+0000 mgr.smithi152.jkoscf (mgr.14182) 207 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:04.579 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/mon.smithi152/config 2024-01-24T02:59:04.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:04 smithi152 bash[16344]: cluster 2024-01-24T02:59:03.141027+0000 mgr.smithi152.jkoscf (mgr.14182) 207 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:06.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:06 smithi195 bash[19846]: cluster 2024-01-24T02:59:05.141605+0000 mgr.smithi152.jkoscf (mgr.14182) 208 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:06.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:06 smithi152 bash[16344]: cluster 2024-01-24T02:59:05.141605+0000 mgr.smithi152.jkoscf (mgr.14182) 208 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:07.654 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:59:08.264 INFO:teuthology.orchestra.run.smithi152.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-01-24T02:59:08.264 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-01-24T02:59:08.265 INFO:tasks.cephadm:Setup complete, yielding 2024-01-24T02:59:08.265 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-01-24T02:59:08.276 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi152.front.sepia.ceph.com 2024-01-24T02:59:08.276 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- bash -c 'ceph orch status' 2024-01-24T02:59:08.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:08 smithi195 bash[19846]: cluster 2024-01-24T02:59:07.142200+0000 mgr.smithi152.jkoscf (mgr.14182) 209 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:08.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:08 smithi195 bash[19846]: audit 2024-01-24T02:59:07.654380+0000 mon.smithi152 (mon.0) 589 : audit [DBG] from='client.? 172.21.15.152:0/3392152397' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-01-24T02:59:08.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:08 smithi152 bash[16344]: cluster 2024-01-24T02:59:07.142200+0000 mgr.smithi152.jkoscf (mgr.14182) 209 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:08.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:08 smithi152 bash[16344]: audit 2024-01-24T02:59:07.654380+0000 mon.smithi152 (mon.0) 589 : audit [DBG] from='client.? 172.21.15.152:0/3392152397' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-01-24T02:59:10.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:10 smithi195 bash[19846]: cluster 2024-01-24T02:59:09.142954+0000 mgr.smithi152.jkoscf (mgr.14182) 210 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:10.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:10 smithi152 bash[16344]: cluster 2024-01-24T02:59:09.142954+0000 mgr.smithi152.jkoscf (mgr.14182) 210 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:11.505 INFO:teuthology.orchestra.run.smithi152.stdout:Backend: cephadm 2024-01-24T02:59:11.505 INFO:teuthology.orchestra.run.smithi152.stdout:Available: Yes 2024-01-24T02:59:11.505 INFO:teuthology.orchestra.run.smithi152.stdout:Paused: No 2024-01-24T02:59:12.125 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- bash -c 'ceph orch ps' 2024-01-24T02:59:12.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:12 smithi195 bash[19846]: cluster 2024-01-24T02:59:11.143618+0000 mgr.smithi152.jkoscf (mgr.14182) 211 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:12.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:12 smithi195 bash[19846]: audit 2024-01-24T02:59:11.504303+0000 mgr.smithi152.jkoscf (mgr.14182) 212 : audit [DBG] from='client.14468 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:12.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:12 smithi152 bash[16344]: cluster 2024-01-24T02:59:11.143618+0000 mgr.smithi152.jkoscf (mgr.14182) 211 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:12.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:12 smithi152 bash[16344]: audit 2024-01-24T02:59:11.504303+0000 mgr.smithi152.jkoscf (mgr.14182) 212 : audit [DBG] from='client.14468 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:14.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:14 smithi195 bash[19846]: cluster 2024-01-24T02:59:13.144197+0000 mgr.smithi152.jkoscf (mgr.14182) 213 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:14.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:14 smithi152 bash[16344]: cluster 2024-01-24T02:59:13.144197+0000 mgr.smithi152.jkoscf (mgr.14182) 213 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:15.490 INFO:teuthology.orchestra.run.smithi152.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-01-24T02:59:15.491 INFO:teuthology.orchestra.run.smithi152.stdout:alertmanager.smithi152 smithi152 *:9093,9094 running (3m) 18s ago 6m 14.5M - 0.23.0 ba2b418f427c ec35430a0e84 2024-01-24T02:59:15.491 INFO:teuthology.orchestra.run.smithi152.stdout:crash.smithi152 smithi152 running (6m) 18s ago 6m 7520k - 16.2.14-449-ga70aebef 377ff36742d8 222cf1516a15 2024-01-24T02:59:15.491 INFO:teuthology.orchestra.run.smithi152.stdout:crash.smithi195 smithi195 running (5m) 18s ago 5m 9360k - 16.2.14-449-ga70aebef 377ff36742d8 216246842e6e 2024-01-24T02:59:15.491 INFO:teuthology.orchestra.run.smithi152.stdout:grafana.smithi152 smithi152 *:3000 running (3m) 18s ago 5m 42.8M - 8.3.5 dad864ee21e9 4e01354d391e 2024-01-24T02:59:15.491 INFO:teuthology.orchestra.run.smithi152.stdout:mgr.smithi152.jkoscf smithi152 *:9283 running (7m) 18s ago 7m 429M - 16.2.14-449-ga70aebef 377ff36742d8 0188f5fc660a 2024-01-24T02:59:15.491 INFO:teuthology.orchestra.run.smithi152.stdout:mgr.smithi195.utuqsp smithi195 *:8443,9283 running (5m) 18s ago 5m 379M - 16.2.14-449-ga70aebef 377ff36742d8 6ad50fb9314a 2024-01-24T02:59:15.491 INFO:teuthology.orchestra.run.smithi152.stdout:mon.smithi152 smithi152 running (7m) 18s ago 7m 59.9M 2048M 16.2.14-449-ga70aebef 377ff36742d8 fb4b346afa8f 2024-01-24T02:59:15.491 INFO:teuthology.orchestra.run.smithi152.stdout:mon.smithi195 smithi195 running (5m) 18s ago 5m 57.6M 2048M 16.2.14-449-ga70aebef 377ff36742d8 989a48531974 2024-01-24T02:59:15.491 INFO:teuthology.orchestra.run.smithi152.stdout:node-exporter.smithi152 smithi152 *:9100 running (5m) 18s ago 5m 11.9M - 1.3.1 1dbe0e931976 e855b3bae0a2 2024-01-24T02:59:15.491 INFO:teuthology.orchestra.run.smithi152.stdout:node-exporter.smithi195 smithi195 *:9100 running (5m) 18s ago 5m 11.4M - 1.3.1 1dbe0e931976 c18e4fdcea32 2024-01-24T02:59:15.491 INFO:teuthology.orchestra.run.smithi152.stdout:osd.0 smithi195 running (4m) 18s ago 4m 36.6M 3785M 16.2.14-449-ga70aebef 377ff36742d8 09837d3b4ac8 2024-01-24T02:59:15.491 INFO:teuthology.orchestra.run.smithi152.stdout:osd.1 smithi152 running (4m) 18s ago 4m 34.5M 3529M 16.2.14-449-ga70aebef 377ff36742d8 cc2a38be83a4 2024-01-24T02:59:15.491 INFO:teuthology.orchestra.run.smithi152.stdout:osd.2 smithi195 running (4m) 18s ago 4m 34.7M 3785M 16.2.14-449-ga70aebef 377ff36742d8 794655f6955d 2024-01-24T02:59:15.492 INFO:teuthology.orchestra.run.smithi152.stdout:osd.3 smithi152 running (4m) 18s ago 4m 34.9M 3529M 16.2.14-449-ga70aebef 377ff36742d8 c26494a86ca6 2024-01-24T02:59:15.492 INFO:teuthology.orchestra.run.smithi152.stdout:osd.4 smithi195 running (4m) 18s ago 4m 33.9M 3785M 16.2.14-449-ga70aebef 377ff36742d8 8ed8774bf917 2024-01-24T02:59:15.492 INFO:teuthology.orchestra.run.smithi152.stdout:osd.5 smithi152 running (4m) 18s ago 4m 34.3M 3529M 16.2.14-449-ga70aebef 377ff36742d8 f628694e6672 2024-01-24T02:59:15.492 INFO:teuthology.orchestra.run.smithi152.stdout:osd.6 smithi195 running (4m) 18s ago 4m 33.9M 3785M 16.2.14-449-ga70aebef 377ff36742d8 ed6bf36a1aa3 2024-01-24T02:59:15.492 INFO:teuthology.orchestra.run.smithi152.stdout:osd.7 smithi152 running (3m) 18s ago 3m 35.0M 3529M 16.2.14-449-ga70aebef 377ff36742d8 f8000238f5db 2024-01-24T02:59:15.492 INFO:teuthology.orchestra.run.smithi152.stdout:prometheus.smithi195 smithi195 *:9095 running (5m) 18s ago 5m 54.7M - 2.33.4 514e6a882f6e 63e948b59c2b 2024-01-24T02:59:16.064 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- bash -c 'ceph orch ls' 2024-01-24T02:59:16.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:16 smithi152 bash[16344]: cluster 2024-01-24T02:59:15.144689+0000 mgr.smithi152.jkoscf (mgr.14182) 214 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:16.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:16 smithi152 bash[16344]: audit 2024-01-24T02:59:15.469044+0000 mgr.smithi152.jkoscf (mgr.14182) 215 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:16.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:16 smithi195 bash[19846]: cluster 2024-01-24T02:59:15.144689+0000 mgr.smithi152.jkoscf (mgr.14182) 214 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:16.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:16 smithi195 bash[19846]: audit 2024-01-24T02:59:15.469044+0000 mgr.smithi152.jkoscf (mgr.14182) 215 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:18.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:18 smithi195 bash[19846]: cluster 2024-01-24T02:59:17.145305+0000 mgr.smithi152.jkoscf (mgr.14182) 216 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:18.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:18 smithi152 bash[16344]: cluster 2024-01-24T02:59:17.145305+0000 mgr.smithi152.jkoscf (mgr.14182) 216 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:19.063 INFO:teuthology.orchestra.run.smithi152.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-01-24T02:59:19.064 INFO:teuthology.orchestra.run.smithi152.stdout:alertmanager ?:9093,9094 1/1 21s ago 6m count:1 2024-01-24T02:59:19.064 INFO:teuthology.orchestra.run.smithi152.stdout:crash 2/2 21s ago 6m * 2024-01-24T02:59:19.064 INFO:teuthology.orchestra.run.smithi152.stdout:grafana ?:3000 1/1 21s ago 6m count:1 2024-01-24T02:59:19.064 INFO:teuthology.orchestra.run.smithi152.stdout:mgr 2/2 21s ago 6m count:2 2024-01-24T02:59:19.064 INFO:teuthology.orchestra.run.smithi152.stdout:mon 2/2 21s ago 5m smithi152:172.21.15.152=smithi152;smithi195:172.21.15.195=smithi195;count:2 2024-01-24T02:59:19.064 INFO:teuthology.orchestra.run.smithi152.stdout:node-exporter ?:9100 2/2 21s ago 6m * 2024-01-24T02:59:19.064 INFO:teuthology.orchestra.run.smithi152.stdout:osd.all-available-devices 8 21s ago 5m * 2024-01-24T02:59:19.064 INFO:teuthology.orchestra.run.smithi152.stdout:prometheus ?:9095 1/1 21s ago 6m count:1 2024-01-24T02:59:19.658 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- bash -c 'ceph orch host ls' 2024-01-24T02:59:20.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:20 smithi195 bash[19846]: audit 2024-01-24T02:59:19.053619+0000 mgr.smithi152.jkoscf (mgr.14182) 217 : audit [DBG] from='client.14476 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:20.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:20 smithi195 bash[19846]: cluster 2024-01-24T02:59:19.145865+0000 mgr.smithi152.jkoscf (mgr.14182) 218 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:20.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:20 smithi152 bash[16344]: audit 2024-01-24T02:59:19.053619+0000 mgr.smithi152.jkoscf (mgr.14182) 217 : audit [DBG] from='client.14476 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:20.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:20 smithi152 bash[16344]: cluster 2024-01-24T02:59:19.145865+0000 mgr.smithi152.jkoscf (mgr.14182) 218 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:22.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:22 smithi195 bash[19846]: cluster 2024-01-24T02:59:21.146534+0000 mgr.smithi152.jkoscf (mgr.14182) 219 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:22.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:22 smithi152 bash[16344]: cluster 2024-01-24T02:59:21.146534+0000 mgr.smithi152.jkoscf (mgr.14182) 219 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:22.697 INFO:teuthology.orchestra.run.smithi152.stdout:HOST ADDR LABELS STATUS 2024-01-24T02:59:22.697 INFO:teuthology.orchestra.run.smithi152.stdout:smithi152 172.21.15.152 2024-01-24T02:59:22.697 INFO:teuthology.orchestra.run.smithi152.stdout:smithi195 172.21.15.195 2024-01-24T02:59:22.697 INFO:teuthology.orchestra.run.smithi152.stdout:2 hosts in cluster 2024-01-24T02:59:23.325 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- bash -c 'ceph orch device ls' 2024-01-24T02:59:24.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:24 smithi195 bash[19846]: audit 2024-01-24T02:59:22.695458+0000 mgr.smithi152.jkoscf (mgr.14182) 220 : audit [DBG] from='client.14480 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:24.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:24 smithi195 bash[19846]: cluster 2024-01-24T02:59:23.147126+0000 mgr.smithi152.jkoscf (mgr.14182) 221 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:24.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:24 smithi152 bash[16344]: audit 2024-01-24T02:59:22.695458+0000 mgr.smithi152.jkoscf (mgr.14182) 220 : audit [DBG] from='client.14480 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:24.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:24 smithi152 bash[16344]: cluster 2024-01-24T02:59:23.147126+0000 mgr.smithi152.jkoscf (mgr.14182) 221 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:26.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:26 smithi152 bash[16344]: cluster 2024-01-24T02:59:25.147773+0000 mgr.smithi152.jkoscf (mgr.14182) 222 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:26.463 INFO:teuthology.orchestra.run.smithi152.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-01-24T02:59:26.463 INFO:teuthology.orchestra.run.smithi152.stdout:smithi152 /dev/nvme0n1 ssd _CVFT623300JT400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-01-24T02:59:26.463 INFO:teuthology.orchestra.run.smithi152.stdout:smithi152 /dev/nvme1n1 ssd _bba8ac4aa23c77f5 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:26.464 INFO:teuthology.orchestra.run.smithi152.stdout:smithi152 /dev/nvme2n1 ssd _3aad16be3a9d3e24 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:26.464 INFO:teuthology.orchestra.run.smithi152.stdout:smithi152 /dev/nvme3n1 ssd _c1b64f80b1687658 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:26.464 INFO:teuthology.orchestra.run.smithi152.stdout:smithi152 /dev/nvme4n1 ssd _21dd12ff9f96e5ce 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:26.464 INFO:teuthology.orchestra.run.smithi152.stdout:smithi195 /dev/nvme0n1 ssd _PHMB751300FS480DGN 447G 3m ago Has a FileSystem, LVM detected 2024-01-24T02:59:26.464 INFO:teuthology.orchestra.run.smithi152.stdout:smithi195 /dev/nvme1n1 ssd _f9bbec61877d3d20 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:26.464 INFO:teuthology.orchestra.run.smithi152.stdout:smithi195 /dev/nvme2n1 ssd _6a014d004bc0badb 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:26.464 INFO:teuthology.orchestra.run.smithi152.stdout:smithi195 /dev/nvme3n1 ssd _1062e214cd534a6a 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:26.464 INFO:teuthology.orchestra.run.smithi152.stdout:smithi195 /dev/nvme4n1 ssd _e4acaebe02d0fe85 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:26.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:26 smithi195 bash[19846]: cluster 2024-01-24T02:59:25.147773+0000 mgr.smithi152.jkoscf (mgr.14182) 222 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:27.131 INFO:teuthology.run_tasks:Running task vip... 2024-01-24T02:59:27.141 INFO:tasks.vip:Allocating static IPs for each host... 2024-01-24T02:59:27.141 INFO:tasks.vip:peername 172.21.15.152 2024-01-24T02:59:27.144 INFO:tasks.vip:172.21.15.152 in 172.21.0.0/20, pos 3991 2024-01-24T02:59:27.149 INFO:tasks.vip:smithi152.front.sepia.ceph.com static 10.0.15.152, vnet 10.0.0.0/16 2024-01-24T02:59:27.149 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-01-24T02:59:27.150 DEBUG:teuthology.orchestra.run.smithi152:> sudo ip route ls 2024-01-24T02:59:27.164 INFO:teuthology.orchestra.run.smithi152.stdout:default via 172.21.15.254 dev enp3s0f1 2024-01-24T02:59:27.164 INFO:teuthology.orchestra.run.smithi152.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.152 metric 100 2024-01-24T02:59:27.164 INFO:teuthology.orchestra.run.smithi152.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-01-24T02:59:27.164 INFO:teuthology.orchestra.run.smithi152.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.152 2024-01-24T02:59:27.164 INFO:teuthology.orchestra.run.smithi152.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.152 metric 100 2024-01-24T02:59:27.165 INFO:tasks.vip:Configuring 10.0.15.152 on smithi152.front.sepia.ceph.com iface enp3s0f1... 2024-01-24T02:59:27.166 DEBUG:teuthology.orchestra.run.smithi152:> sudo ip addr add 10.0.15.152/16 dev enp3s0f1 2024-01-24T02:59:27.225 INFO:tasks.vip:peername 172.21.15.195 2024-01-24T02:59:27.229 INFO:tasks.vip:172.21.15.195 in 172.21.0.0/20, pos 4034 2024-01-24T02:59:27.233 INFO:tasks.vip:smithi195.front.sepia.ceph.com static 10.0.15.195, vnet 10.0.0.0/16 2024-01-24T02:59:27.233 DEBUG:teuthology.orchestra.run.smithi195:> sudo ip route ls 2024-01-24T02:59:27.249 INFO:teuthology.orchestra.run.smithi195.stdout:default via 172.21.15.254 dev enp3s0f1 2024-01-24T02:59:27.249 INFO:teuthology.orchestra.run.smithi195.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.195 metric 100 2024-01-24T02:59:27.249 INFO:teuthology.orchestra.run.smithi195.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-01-24T02:59:27.249 INFO:teuthology.orchestra.run.smithi195.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.195 2024-01-24T02:59:27.249 INFO:teuthology.orchestra.run.smithi195.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.195 metric 100 2024-01-24T02:59:27.250 INFO:tasks.vip:Configuring 10.0.15.195 on smithi195.front.sepia.ceph.com iface enp3s0f1... 2024-01-24T02:59:27.250 DEBUG:teuthology.orchestra.run.smithi195:> sudo ip addr add 10.0.15.195/16 dev enp3s0f1 2024-01-24T02:59:27.308 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-01-24T02:59:27.319 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi152.front.sepia.ceph.com 2024-01-24T02:59:27.319 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2024-01-24T02:59:27.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:27 smithi152 bash[16344]: audit 2024-01-24T02:59:26.454863+0000 mgr.smithi152.jkoscf (mgr.14182) 223 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:27.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:27 smithi195 bash[19846]: audit 2024-01-24T02:59:26.454863+0000 mgr.smithi152.jkoscf (mgr.14182) 223 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:28.526 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:28 smithi152 bash[16344]: cluster 2024-01-24T02:59:27.148398+0000 mgr.smithi152.jkoscf (mgr.14182) 224 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:28.711 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:28 smithi195 bash[19846]: cluster 2024-01-24T02:59:27.148398+0000 mgr.smithi152.jkoscf (mgr.14182) 224 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:30.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:30 smithi152 bash[16344]: cluster 2024-01-24T02:59:29.149010+0000 mgr.smithi152.jkoscf (mgr.14182) 225 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:30.464 INFO:teuthology.orchestra.run.smithi152.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-01-24T02:59:30.464 INFO:teuthology.orchestra.run.smithi152.stdout:smithi152 /dev/nvme0n1 ssd _CVFT623300JT400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-01-24T02:59:30.464 INFO:teuthology.orchestra.run.smithi152.stdout:smithi152 /dev/nvme1n1 ssd _bba8ac4aa23c77f5 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:30.464 INFO:teuthology.orchestra.run.smithi152.stdout:smithi152 /dev/nvme2n1 ssd _3aad16be3a9d3e24 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:30.464 INFO:teuthology.orchestra.run.smithi152.stdout:smithi152 /dev/nvme3n1 ssd _c1b64f80b1687658 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:30.464 INFO:teuthology.orchestra.run.smithi152.stdout:smithi152 /dev/nvme4n1 ssd _21dd12ff9f96e5ce 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:30.465 INFO:teuthology.orchestra.run.smithi152.stdout:smithi195 /dev/nvme0n1 ssd _PHMB751300FS480DGN 447G 3m ago Has a FileSystem, LVM detected 2024-01-24T02:59:30.465 INFO:teuthology.orchestra.run.smithi152.stdout:smithi195 /dev/nvme1n1 ssd _f9bbec61877d3d20 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:30.465 INFO:teuthology.orchestra.run.smithi152.stdout:smithi195 /dev/nvme2n1 ssd _6a014d004bc0badb 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:30.465 INFO:teuthology.orchestra.run.smithi152.stdout:smithi195 /dev/nvme3n1 ssd _1062e214cd534a6a 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:30.465 INFO:teuthology.orchestra.run.smithi152.stdout:smithi195 /dev/nvme4n1 ssd _e4acaebe02d0fe85 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-24T02:59:30.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:30 smithi195 bash[19846]: cluster 2024-01-24T02:59:29.149010+0000 mgr.smithi152.jkoscf (mgr.14182) 225 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:31.078 INFO:teuthology.run_tasks:Running task vip.exec... 2024-01-24T02:59:31.088 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi152.front.sepia.ceph.com 2024-01-24T02:59:31.088 DEBUG:teuthology.orchestra.run.smithi152:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-01-24T02:59:31.103 INFO:teuthology.orchestra.run.smithi152.stderr:+ systemctl stop nfs-server 2024-01-24T02:59:31.125 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi195.front.sepia.ceph.com 2024-01-24T02:59:31.125 DEBUG:teuthology.orchestra.run.smithi195:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-01-24T02:59:31.140 INFO:teuthology.orchestra.run.smithi195.stderr:+ systemctl stop nfs-server 2024-01-24T02:59:31.164 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-01-24T02:59:31.173 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi152.front.sepia.ceph.com 2024-01-24T02:59:31.174 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-01-24T02:59:31.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:31 smithi152 bash[16344]: audit 2024-01-24T02:59:30.455655+0000 mgr.smithi152.jkoscf (mgr.14182) 226 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:31.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:31 smithi152 bash[16344]: audit 2024-01-24T02:59:30.501066+0000 mon.smithi152 (mon.0) 590 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:59:31.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:31 smithi195 bash[19846]: audit 2024-01-24T02:59:30.455655+0000 mgr.smithi152.jkoscf (mgr.14182) 226 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:31.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:31 smithi195 bash[19846]: audit 2024-01-24T02:59:30.501066+0000 mon.smithi152 (mon.0) 590 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T02:59:32.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:32 smithi152 bash[16344]: cluster 2024-01-24T02:59:31.149649+0000 mgr.smithi152.jkoscf (mgr.14182) 227 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:32.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:32 smithi195 bash[19846]: cluster 2024-01-24T02:59:31.149649+0000 mgr.smithi152.jkoscf (mgr.14182) 227 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:34.372 INFO:teuthology.orchestra.run.smithi152.stdout:Scheduled rgw.foorgw update... 2024-01-24T02:59:34.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:34 smithi152 bash[16344]: cluster 2024-01-24T02:59:33.150224+0000 mgr.smithi152.jkoscf (mgr.14182) 228 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:34.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:34 smithi195 bash[19846]: cluster 2024-01-24T02:59:33.150224+0000 mgr.smithi152.jkoscf (mgr.14182) 228 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:34.993 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.152/16' 2024-01-24T02:59:35.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:35 smithi195 bash[19846]: audit 2024-01-24T02:59:34.365441+0000 mgr.smithi152.jkoscf (mgr.14182) 229 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:35.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:35 smithi195 bash[19846]: cephadm 2024-01-24T02:59:34.366792+0000 mgr.smithi152.jkoscf (mgr.14182) 230 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-01-24T02:59:35.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:35 smithi195 bash[19846]: audit 2024-01-24T02:59:34.371163+0000 mon.smithi152 (mon.0) 591 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:35.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:35 smithi152 bash[16344]: audit 2024-01-24T02:59:34.365441+0000 mgr.smithi152.jkoscf (mgr.14182) 229 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:35.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:35 smithi152 bash[16344]: cephadm 2024-01-24T02:59:34.366792+0000 mgr.smithi152.jkoscf (mgr.14182) 230 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-01-24T02:59:35.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:35 smithi152 bash[16344]: audit 2024-01-24T02:59:34.371163+0000 mon.smithi152 (mon.0) 591 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:36.436 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:36 smithi152 bash[16344]: cluster 2024-01-24T02:59:35.150626+0000 mgr.smithi152.jkoscf (mgr.14182) 231 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:36.436 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:36 smithi152 bash[16344]: audit 2024-01-24T02:59:36.361678+0000 mon.smithi152 (mon.0) 592 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:36.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:36 smithi195 bash[19846]: cluster 2024-01-24T02:59:35.150626+0000 mgr.smithi152.jkoscf (mgr.14182) 231 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:36.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:36 smithi195 bash[19846]: audit 2024-01-24T02:59:36.361678+0000 mon.smithi152 (mon.0) 592 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:38.079 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:37 smithi152 bash[16344]: audit 2024-01-24T02:59:36.734828+0000 mon.smithi152 (mon.0) 593 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:38.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:37 smithi152 bash[16344]: cluster 2024-01-24T02:59:37.151189+0000 mgr.smithi152.jkoscf (mgr.14182) 232 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:38.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:37 smithi195 bash[19846]: audit 2024-01-24T02:59:36.734828+0000 mon.smithi152 (mon.0) 593 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:38.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:37 smithi195 bash[19846]: cluster 2024-01-24T02:59:37.151189+0000 mgr.smithi152.jkoscf (mgr.14182) 232 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:39.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:39 smithi195 bash[19846]: audit 2024-01-24T02:59:38.285833+0000 mgr.smithi152.jkoscf (mgr.14182) 233 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.152/16", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:39.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:39 smithi195 bash[19846]: audit 2024-01-24T02:59:38.288959+0000 mon.smithi152 (mon.0) 594 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-01-24T02:59:39.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:39 smithi152 bash[16344]: audit 2024-01-24T02:59:38.285833+0000 mgr.smithi152.jkoscf (mgr.14182) 233 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.152/16", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T02:59:39.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:39 smithi152 bash[16344]: audit 2024-01-24T02:59:38.288959+0000 mon.smithi152 (mon.0) 594 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-01-24T02:59:40.284 INFO:teuthology.orchestra.run.smithi152.stdout:NFS Cluster Created Successfully 2024-01-24T02:59:40.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:40 smithi195 bash[19846]: cluster 2024-01-24T02:59:39.151870+0000 mgr.smithi152.jkoscf (mgr.14182) 234 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:40 smithi195 bash[19846]: audit 2024-01-24T02:59:39.210587+0000 mon.smithi152 (mon.0) 595 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-01-24T02:59:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:40 smithi195 bash[19846]: cluster 2024-01-24T02:59:39.211015+0000 mon.smithi152 (mon.0) 596 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-01-24T02:59:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:40 smithi195 bash[19846]: audit 2024-01-24T02:59:39.216012+0000 mon.smithi152 (mon.0) 597 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-01-24T02:59:40.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:40 smithi152 bash[16344]: cluster 2024-01-24T02:59:39.151870+0000 mgr.smithi152.jkoscf (mgr.14182) 234 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:40.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:40 smithi152 bash[16344]: audit 2024-01-24T02:59:39.210587+0000 mon.smithi152 (mon.0) 595 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-01-24T02:59:40.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:40 smithi152 bash[16344]: cluster 2024-01-24T02:59:39.211015+0000 mon.smithi152 (mon.0) 596 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-01-24T02:59:40.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:40 smithi152 bash[16344]: audit 2024-01-24T02:59:39.216012+0000 mon.smithi152 (mon.0) 597 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-01-24T02:59:40.983 INFO:teuthology.run_tasks:Running task vip.exec... 2024-01-24T02:59:40.992 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi152.front.sepia.ceph.com 2024-01-24T02:59:40.993 DEBUG:teuthology.orchestra.run.smithi152:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-01-24T02:59:41.005 INFO:teuthology.orchestra.run.smithi152.stderr:+ dnf install -y python3-boto3 2024-01-24T02:59:41.005 INFO:teuthology.orchestra.run.smithi152.stderr:bash: dnf: command not found 2024-01-24T02:59:41.005 INFO:teuthology.orchestra.run.smithi152.stderr:+ apt install -y python3-boto3 2024-01-24T02:59:41.012 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T02:59:41.013 INFO:teuthology.orchestra.run.smithi152.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-01-24T02:59:41.013 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T02:59:41.089 INFO:teuthology.orchestra.run.smithi152.stdout:Reading package lists... 2024-01-24T02:59:41.329 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:41 smithi152 bash[16344]: audit 2024-01-24T02:59:40.213681+0000 mon.smithi152 (mon.0) 598 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-01-24T02:59:41.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:41 smithi152 bash[16344]: cluster 2024-01-24T02:59:40.214192+0000 mon.smithi152 (mon.0) 599 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-01-24T02:59:41.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:41 smithi152 bash[16344]: cephadm 2024-01-24T02:59:40.270020+0000 mgr.smithi152.jkoscf (mgr.14182) 235 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-01-24T02:59:41.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:41 smithi152 bash[16344]: audit 2024-01-24T02:59:40.275787+0000 mon.smithi152 (mon.0) 600 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:41.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:41 smithi152 bash[16344]: cephadm 2024-01-24T02:59:40.277891+0000 mgr.smithi152.jkoscf (mgr.14182) 236 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-01-24T02:59:41.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:41 smithi152 bash[16344]: audit 2024-01-24T02:59:40.282889+0000 mon.smithi152 (mon.0) 601 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:41.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:41 smithi152 bash[16344]: cluster 2024-01-24T02:59:41.214507+0000 mon.smithi152 (mon.0) 602 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-01-24T02:59:41.391 INFO:teuthology.orchestra.run.smithi152.stdout:Building dependency tree... 2024-01-24T02:59:41.391 INFO:teuthology.orchestra.run.smithi152.stdout:Reading state information... 2024-01-24T02:59:41.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:41 smithi195 bash[19846]: audit 2024-01-24T02:59:40.213681+0000 mon.smithi152 (mon.0) 598 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-01-24T02:59:41.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:41 smithi195 bash[19846]: cluster 2024-01-24T02:59:40.214192+0000 mon.smithi152 (mon.0) 599 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-01-24T02:59:41.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:41 smithi195 bash[19846]: cephadm 2024-01-24T02:59:40.270020+0000 mgr.smithi152.jkoscf (mgr.14182) 235 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-01-24T02:59:41.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:41 smithi195 bash[19846]: audit 2024-01-24T02:59:40.275787+0000 mon.smithi152 (mon.0) 600 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:41.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:41 smithi195 bash[19846]: cephadm 2024-01-24T02:59:40.277891+0000 mgr.smithi152.jkoscf (mgr.14182) 236 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-01-24T02:59:41.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:41 smithi195 bash[19846]: audit 2024-01-24T02:59:40.282889+0000 mon.smithi152 (mon.0) 601 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:41.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:41 smithi195 bash[19846]: cluster 2024-01-24T02:59:41.214507+0000 mon.smithi152 (mon.0) 602 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-01-24T02:59:41.603 INFO:teuthology.orchestra.run.smithi152.stdout:The following packages were automatically installed and are no longer required: 2024-01-24T02:59:41.604 INFO:teuthology.orchestra.run.smithi152.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-01-24T02:59:41.604 INFO:teuthology.orchestra.run.smithi152.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-01-24T02:59:41.604 INFO:teuthology.orchestra.run.smithi152.stdout: linux-modules-extra-4.15.0-194-generic 2024-01-24T02:59:41.604 INFO:teuthology.orchestra.run.smithi152.stdout:Use 'sudo apt autoremove' to remove them. 2024-01-24T02:59:41.604 INFO:teuthology.orchestra.run.smithi152.stdout:The following additional packages will be installed: 2024-01-24T02:59:41.606 INFO:teuthology.orchestra.run.smithi152.stdout: docutils-common libpaper-utils libpaper1 python3-botocore python3-dateutil 2024-01-24T02:59:41.606 INFO:teuthology.orchestra.run.smithi152.stdout: python3-docutils python3-jmespath python3-olefile python3-pil 2024-01-24T02:59:41.606 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pygments python3-roman python3-s3transfer sgml-base xml-core 2024-01-24T02:59:41.608 INFO:teuthology.orchestra.run.smithi152.stdout:Suggested packages: 2024-01-24T02:59:41.608 INFO:teuthology.orchestra.run.smithi152.stdout: docutils-doc fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french 2024-01-24T02:59:41.608 INFO:teuthology.orchestra.run.smithi152.stdout: texlive-latex-base texlive-latex-recommended python-pil-doc python3-pil-dbg 2024-01-24T02:59:41.608 INFO:teuthology.orchestra.run.smithi152.stdout: sgml-base-doc debhelper 2024-01-24T02:59:41.650 INFO:teuthology.orchestra.run.smithi152.stdout:The following NEW packages will be installed: 2024-01-24T02:59:41.651 INFO:teuthology.orchestra.run.smithi152.stdout: docutils-common libpaper-utils libpaper1 python3-boto3 python3-botocore 2024-01-24T02:59:41.652 INFO:teuthology.orchestra.run.smithi152.stdout: python3-dateutil python3-docutils python3-jmespath python3-olefile 2024-01-24T02:59:41.652 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pil python3-pygments python3-roman python3-s3transfer sgml-base 2024-01-24T02:59:41.652 INFO:teuthology.orchestra.run.smithi152.stdout: xml-core 2024-01-24T02:59:41.717 INFO:teuthology.orchestra.run.smithi152.stdout:0 upgraded, 15 newly installed, 0 to remove and 146 not upgraded. 2024-01-24T02:59:41.717 INFO:teuthology.orchestra.run.smithi152.stdout:Need to get 4,955 kB of archives. 2024-01-24T02:59:41.717 INFO:teuthology.orchestra.run.smithi152.stdout:After this operation, 55.1 MB of additional disk space will be used. 2024-01-24T02:59:41.717 INFO:teuthology.orchestra.run.smithi152.stdout:Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 sgml-base all 1.29 [12.3 kB] 2024-01-24T02:59:41.737 INFO:teuthology.orchestra.run.smithi152.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 xml-core all 0.18 [21.3 kB] 2024-01-24T02:59:41.747 INFO:teuthology.orchestra.run.smithi152.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-common all 0.14+dfsg-3 [156 kB] 2024-01-24T02:59:41.801 INFO:teuthology.orchestra.run.smithi152.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper1 amd64 1.1.24+nmu5ubuntu1 [13.6 kB] 2024-01-24T02:59:41.803 INFO:teuthology.orchestra.run.smithi152.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper-utils amd64 1.1.24+nmu5ubuntu1 [8,170 B] 2024-01-24T02:59:41.805 INFO:teuthology.orchestra.run.smithi152.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-dateutil all 2.6.1-1 [52.3 kB] 2024-01-24T02:59:41.811 INFO:teuthology.orchestra.run.smithi152.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-roman all 2.0.0-3 [8,624 B] 2024-01-24T02:59:41.812 INFO:teuthology.orchestra.run.smithi152.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-docutils all 0.14+dfsg-3 [363 kB] 2024-01-24T02:59:41.838 INFO:teuthology.orchestra.run.smithi152.stdout:Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python3-jmespath all 0.9.3-1ubuntu1.1 [18.8 kB] 2024-01-24T02:59:41.839 INFO:teuthology.orchestra.run.smithi152.stdout:Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python3-botocore all 1.16.19+repack-1ubuntu0.18.04.1 [3,255 kB] 2024-01-24T02:59:41.897 INFO:teuthology.orchestra.run.smithi152.stdout:Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python3-s3transfer all 0.3.3-1ubuntu0.18.04.1 [46.7 kB] 2024-01-24T02:59:41.898 INFO:teuthology.orchestra.run.smithi152.stdout:Get:12 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python3-boto3 all 1.4.2-1 [61.8 kB] 2024-01-24T02:59:41.898 INFO:teuthology.orchestra.run.smithi152.stdout:Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-olefile all 0.45.1-1 [33.3 kB] 2024-01-24T02:59:41.899 INFO:teuthology.orchestra.run.smithi152.stdout:Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-pil amd64 5.1.0-1ubuntu0.8 [331 kB] 2024-01-24T02:59:41.903 INFO:teuthology.orchestra.run.smithi152.stdout:Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-pygments all 2.2.0+dfsg-1ubuntu0.2 [574 kB] 2024-01-24T02:59:42.163 INFO:teuthology.orchestra.run.smithi152.stderr:debconf: unable to initialize frontend: Dialog 2024-01-24T02:59:42.163 INFO:teuthology.orchestra.run.smithi152.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-01-24T02:59:42.163 INFO:teuthology.orchestra.run.smithi152.stderr:debconf: falling back to frontend: Readline 2024-01-24T02:59:42.183 INFO:teuthology.orchestra.run.smithi152.stderr:debconf: unable to initialize frontend: Readline 2024-01-24T02:59:42.184 INFO:teuthology.orchestra.run.smithi152.stderr:debconf: (This frontend requires a controlling tty.) 2024-01-24T02:59:42.184 INFO:teuthology.orchestra.run.smithi152.stderr:debconf: falling back to frontend: Teletype 2024-01-24T02:59:42.190 INFO:teuthology.orchestra.run.smithi152.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-01-24T02:59:42.246 INFO:teuthology.orchestra.run.smithi152.stdout:Fetched 4,955 kB in 0s (20.8 MB/s) 2024-01-24T02:59:42.466 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package sgml-base. 2024-01-24T02:59:42.528 INFO:teuthology.orchestra.run.smithi152.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 ... 172445 files and directories currently installed.) 2024-01-24T02:59:42.533 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../00-sgml-base_1.29_all.deb ... 2024-01-24T02:59:42.579 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking sgml-base (1.29) ... 2024-01-24T02:59:42.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:42 smithi152 bash[16344]: cluster 2024-01-24T02:59:41.152535+0000 mgr.smithi152.jkoscf (mgr.14182) 237 : cluster [DBG] pgmap v211: 33 pgs: 2 creating+peering, 9 active+clean, 22 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:42.579 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:42 smithi152 bash[16344]: cluster 2024-01-24T02:59:41.299574+0000 mon.smithi152 (mon.0) 603 : cluster [DBG] mgrmap e19: smithi152.jkoscf(active, since 6m), standbys: smithi195.utuqsp 2024-01-24T02:59:42.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:42 smithi195 bash[19846]: cluster 2024-01-24T02:59:41.152535+0000 mgr.smithi152.jkoscf (mgr.14182) 237 : cluster [DBG] pgmap v211: 33 pgs: 2 creating+peering, 9 active+clean, 22 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:42.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:42 smithi195 bash[19846]: cluster 2024-01-24T02:59:41.299574+0000 mon.smithi152 (mon.0) 603 : cluster [DBG] mgrmap e19: smithi152.jkoscf(active, since 6m), standbys: smithi195.utuqsp 2024-01-24T02:59:44.109 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package xml-core. 2024-01-24T02:59:44.125 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../01-xml-core_0.18_all.deb ... 2024-01-24T02:59:44.171 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking xml-core (0.18) ... 2024-01-24T02:59:44.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:44 smithi152 bash[16344]: cluster 2024-01-24T02:59:43.153184+0000 mgr.smithi152.jkoscf (mgr.14182) 238 : cluster [DBG] pgmap v213: 33 pgs: 2 creating+peering, 16 active+clean, 15 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:44.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:44 smithi195 bash[19846]: cluster 2024-01-24T02:59:43.153184+0000 mgr.smithi152.jkoscf (mgr.14182) 238 : cluster [DBG] pgmap v213: 33 pgs: 2 creating+peering, 16 active+clean, 15 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:45.184 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package docutils-common. 2024-01-24T02:59:45.201 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../02-docutils-common_0.14+dfsg-3_all.deb ... 2024-01-24T02:59:45.343 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking docutils-common (0.14+dfsg-3) ... 2024-01-24T02:59:46.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:46 smithi152 bash[16344]: cluster 2024-01-24T02:59:45.153873+0000 mgr.smithi152.jkoscf (mgr.14182) 239 : cluster [DBG] pgmap v214: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:46.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:46 smithi152 bash[16344]: audit 2024-01-24T02:59:45.887288+0000 mon.smithi152 (mon.0) 604 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:46.590 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libpaper1:amd64. 2024-01-24T02:59:46.604 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../03-libpaper1_1.1.24+nmu5ubuntu1_amd64.deb ... 2024-01-24T02:59:46.698 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... 2024-01-24T02:59:46.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:46 smithi195 bash[19846]: cluster 2024-01-24T02:59:45.153873+0000 mgr.smithi152.jkoscf (mgr.14182) 239 : cluster [DBG] pgmap v214: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:46.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:46 smithi195 bash[19846]: audit 2024-01-24T02:59:45.887288+0000 mon.smithi152 (mon.0) 604 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:47.014 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libpaper-utils. 2024-01-24T02:59:47.032 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../04-libpaper-utils_1.1.24+nmu5ubuntu1_amd64.deb ... 2024-01-24T02:59:47.077 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libpaper-utils (1.1.24+nmu5ubuntu1) ... 2024-01-24T02:59:47.406 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-dateutil. 2024-01-24T02:59:47.425 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../05-python3-dateutil_2.6.1-1_all.deb ... 2024-01-24T02:59:47.464 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-dateutil (2.6.1-1) ... 2024-01-24T02:59:47.793 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-roman. 2024-01-24T02:59:47.812 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../06-python3-roman_2.0.0-3_all.deb ... 2024-01-24T02:59:47.851 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-roman (2.0.0-3) ... 2024-01-24T02:59:48.523 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-docutils. 2024-01-24T02:59:48.542 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../07-python3-docutils_0.14+dfsg-3_all.deb ... 2024-01-24T02:59:48.668 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-docutils (0.14+dfsg-3) ... 2024-01-24T02:59:48.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:48 smithi195 bash[19846]: cluster 2024-01-24T02:59:47.154726+0000 mgr.smithi152.jkoscf (mgr.14182) 240 : cluster [DBG] pgmap v215: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:48.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:48 smithi152 bash[16344]: cluster 2024-01-24T02:59:47.154726+0000 mgr.smithi152.jkoscf (mgr.14182) 240 : cluster [DBG] pgmap v215: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:49.113 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-jmespath. 2024-01-24T02:59:49.129 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../08-python3-jmespath_0.9.3-1ubuntu1.1_all.deb ... 2024-01-24T02:59:49.164 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-jmespath (0.9.3-1ubuntu1.1) ... 2024-01-24T02:59:49.476 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-botocore. 2024-01-24T02:59:49.491 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../09-python3-botocore_1.16.19+repack-1ubuntu0.18.04.1_all.deb ... 2024-01-24T02:59:49.534 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-botocore (1.16.19+repack-1ubuntu0.18.04.1) ... 2024-01-24T02:59:50.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:50 smithi152 bash[16344]: audit 2024-01-24T02:59:49.076114+0000 mon.smithi152 (mon.0) 605 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:50.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:50 smithi152 bash[16344]: audit 2024-01-24T02:59:49.077499+0000 mon.smithi152 (mon.0) 606 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:59:50.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:50 smithi152 bash[16344]: audit 2024-01-24T02:59:49.079029+0000 mon.smithi152 (mon.0) 607 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T02:59:50.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:50 smithi152 bash[16344]: audit 2024-01-24T02:59:49.087362+0000 mon.smithi152 (mon.0) 608 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:50.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:50 smithi152 bash[16344]: audit 2024-01-24T02:59:49.095525+0000 mon.smithi152 (mon.0) 609 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T02:59:50.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:50 smithi152 bash[16344]: cephadm 2024-01-24T02:59:49.106230+0000 mgr.smithi152.jkoscf (mgr.14182) 241 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-01-24T02:59:50.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:50 smithi152 bash[16344]: audit 2024-01-24T02:59:49.112204+0000 mon.smithi152 (mon.0) 610 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:50.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:50 smithi152 bash[16344]: audit 2024-01-24T02:59:49.113309+0000 mon.smithi152 (mon.0) 611 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.fhqphd", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-24T02:59:50.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:50 smithi152 bash[16344]: audit 2024-01-24T02:59:49.119345+0000 mon.smithi152 (mon.0) 612 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.fhqphd", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-24T02:59:50.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:50 smithi152 bash[16344]: audit 2024-01-24T02:59:49.127198+0000 mon.smithi152 (mon.0) 613 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:50.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:50 smithi152 bash[16344]: audit 2024-01-24T02:59:49.128892+0000 mon.smithi152 (mon.0) 614 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:59:50.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:50 smithi152 bash[16344]: cephadm 2024-01-24T02:59:49.130103+0000 mgr.smithi152.jkoscf (mgr.14182) 242 : cephadm [INF] Deploying daemon rgw.foorgw.smithi195.fhqphd on smithi195 2024-01-24T02:59:50.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:50 smithi152 bash[16344]: cluster 2024-01-24T02:59:49.155469+0000 mgr.smithi152.jkoscf (mgr.14182) 243 : cluster [DBG] pgmap v216: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:50.465 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:50 smithi195 bash[19846]: audit 2024-01-24T02:59:49.076114+0000 mon.smithi152 (mon.0) 605 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:50.465 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:50 smithi195 bash[19846]: audit 2024-01-24T02:59:49.077499+0000 mon.smithi152 (mon.0) 606 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:59:50.465 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:50 smithi195 bash[19846]: audit 2024-01-24T02:59:49.079029+0000 mon.smithi152 (mon.0) 607 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T02:59:50.465 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:50 smithi195 bash[19846]: audit 2024-01-24T02:59:49.087362+0000 mon.smithi152 (mon.0) 608 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:50.465 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:50 smithi195 bash[19846]: audit 2024-01-24T02:59:49.095525+0000 mon.smithi152 (mon.0) 609 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T02:59:50.465 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:50 smithi195 bash[19846]: cephadm 2024-01-24T02:59:49.106230+0000 mgr.smithi152.jkoscf (mgr.14182) 241 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-01-24T02:59:50.465 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:50 smithi195 bash[19846]: audit 2024-01-24T02:59:49.112204+0000 mon.smithi152 (mon.0) 610 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:50.465 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:50 smithi195 bash[19846]: audit 2024-01-24T02:59:49.113309+0000 mon.smithi152 (mon.0) 611 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.fhqphd", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-24T02:59:50.465 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:50 smithi195 bash[19846]: audit 2024-01-24T02:59:49.119345+0000 mon.smithi152 (mon.0) 612 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.fhqphd", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-24T02:59:50.465 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:50 smithi195 bash[19846]: audit 2024-01-24T02:59:49.127198+0000 mon.smithi152 (mon.0) 613 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:50.466 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:50 smithi195 bash[19846]: audit 2024-01-24T02:59:49.128892+0000 mon.smithi152 (mon.0) 614 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:59:50.466 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:50 smithi195 bash[19846]: cephadm 2024-01-24T02:59:49.130103+0000 mgr.smithi152.jkoscf (mgr.14182) 242 : cephadm [INF] Deploying daemon rgw.foorgw.smithi195.fhqphd on smithi195 2024-01-24T02:59:50.466 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:50 smithi195 bash[19846]: cluster 2024-01-24T02:59:49.155469+0000 mgr.smithi152.jkoscf (mgr.14182) 243 : cluster [DBG] pgmap v216: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:50.735 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-s3transfer. 2024-01-24T02:59:50.751 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../10-python3-s3transfer_0.3.3-1ubuntu0.18.04.1_all.deb ... 2024-01-24T02:59:50.793 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-s3transfer (0.3.3-1ubuntu0.18.04.1) ... 2024-01-24T02:59:51.088 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-boto3. 2024-01-24T02:59:51.104 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../11-python3-boto3_1.4.2-1_all.deb ... 2024-01-24T02:59:51.146 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-boto3 (1.4.2-1) ... 2024-01-24T02:59:51.518 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-olefile. 2024-01-24T02:59:51.536 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../12-python3-olefile_0.45.1-1_all.deb ... 2024-01-24T02:59:51.576 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-olefile (0.45.1-1) ... 2024-01-24T02:59:52.458 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-pil:amd64. 2024-01-24T02:59:52.473 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../13-python3-pil_5.1.0-1ubuntu0.8_amd64.deb ... 2024-01-24T02:59:52.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:52 smithi195 bash[19846]: cluster 2024-01-24T02:59:51.156158+0000 mgr.smithi152.jkoscf (mgr.14182) 244 : cluster [DBG] pgmap v217: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:52.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:52 smithi195 bash[19846]: audit 2024-01-24T02:59:51.354795+0000 mon.smithi152 (mon.0) 615 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:52.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:52 smithi195 bash[19846]: audit 2024-01-24T02:59:51.357189+0000 mon.smithi152 (mon.0) 616 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi152.lohnfz", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-24T02:59:52.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:52 smithi195 bash[19846]: audit 2024-01-24T02:59:51.363848+0000 mon.smithi152 (mon.0) 617 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi152.lohnfz", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-24T02:59:52.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:52 smithi195 bash[19846]: audit 2024-01-24T02:59:51.372768+0000 mon.smithi152 (mon.0) 618 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:52.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:52 smithi195 bash[19846]: audit 2024-01-24T02:59:51.374071+0000 mon.smithi152 (mon.0) 619 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:59:52.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:52 smithi195 bash[19846]: cephadm 2024-01-24T02:59:51.375307+0000 mgr.smithi152.jkoscf (mgr.14182) 245 : cephadm [INF] Deploying daemon rgw.foorgw.smithi152.lohnfz on smithi152 2024-01-24T02:59:52.542 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-pil:amd64 (5.1.0-1ubuntu0.8) ... 2024-01-24T02:59:52.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:52 smithi152 bash[16344]: cluster 2024-01-24T02:59:51.156158+0000 mgr.smithi152.jkoscf (mgr.14182) 244 : cluster [DBG] pgmap v217: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:52.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:52 smithi152 bash[16344]: audit 2024-01-24T02:59:51.354795+0000 mon.smithi152 (mon.0) 615 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:52.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:52 smithi152 bash[16344]: audit 2024-01-24T02:59:51.357189+0000 mon.smithi152 (mon.0) 616 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi152.lohnfz", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-24T02:59:52.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:52 smithi152 bash[16344]: audit 2024-01-24T02:59:51.363848+0000 mon.smithi152 (mon.0) 617 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi152.lohnfz", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-24T02:59:52.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:52 smithi152 bash[16344]: audit 2024-01-24T02:59:51.372768+0000 mon.smithi152 (mon.0) 618 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:52.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:52 smithi152 bash[16344]: audit 2024-01-24T02:59:51.374071+0000 mon.smithi152 (mon.0) 619 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:59:52.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:52 smithi152 bash[16344]: cephadm 2024-01-24T02:59:51.375307+0000 mgr.smithi152.jkoscf (mgr.14182) 245 : cephadm [INF] Deploying daemon rgw.foorgw.smithi152.lohnfz on smithi152 2024-01-24T02:59:53.214 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-pygments. 2024-01-24T02:59:53.226 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../14-python3-pygments_2.2.0+dfsg-1ubuntu0.2_all.deb ... 2024-01-24T02:59:53.298 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-pygments (2.2.0+dfsg-1ubuntu0.2) ... 2024-01-24T02:59:54.352 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... 2024-01-24T02:59:54.525 INFO:teuthology.orchestra.run.smithi152.stdout:debconf: unable to initialize frontend: Dialog 2024-01-24T02:59:54.525 INFO:teuthology.orchestra.run.smithi152.stdout:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-01-24T02:59:54.525 INFO:teuthology.orchestra.run.smithi152.stdout:debconf: falling back to frontend: Readline 2024-01-24T02:59:54.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:54 smithi195 bash[19846]: cluster 2024-01-24T02:59:53.156678+0000 mgr.smithi152.jkoscf (mgr.14182) 246 : cluster [DBG] pgmap v218: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:54.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:54 smithi195 bash[19846]: cluster 2024-01-24T02:59:53.363207+0000 mon.smithi152 (mon.0) 620 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-01-24T02:59:54.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:54 smithi195 bash[19846]: audit 2024-01-24T02:59:53.368741+0000 mon.smithi195 (mon.1) 19 : audit [INF] from='client.? 172.21.15.195:0/2596779556' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-01-24T02:59:54.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:54 smithi195 bash[19846]: audit 2024-01-24T02:59:53.369328+0000 mon.smithi152 (mon.0) 621 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-01-24T02:59:54.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:54 smithi152 bash[16344]: cluster 2024-01-24T02:59:53.156678+0000 mgr.smithi152.jkoscf (mgr.14182) 246 : cluster [DBG] pgmap v218: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:54.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:54 smithi152 bash[16344]: cluster 2024-01-24T02:59:53.363207+0000 mon.smithi152 (mon.0) 620 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-01-24T02:59:54.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:54 smithi152 bash[16344]: audit 2024-01-24T02:59:53.368741+0000 mon.smithi195 (mon.1) 19 : audit [INF] from='client.? 172.21.15.195:0/2596779556' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-01-24T02:59:54.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:54 smithi152 bash[16344]: audit 2024-01-24T02:59:53.369328+0000 mon.smithi152 (mon.0) 621 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-01-24T02:59:55.049 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T02:59:55.049 INFO:teuthology.orchestra.run.smithi152.stdout:Creating config file /etc/papersize with new version 2024-01-24T02:59:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: audit 2024-01-24T02:59:54.372656+0000 mon.smithi152 (mon.0) 622 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-01-24T02:59:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: cluster 2024-01-24T02:59:54.372812+0000 mon.smithi152 (mon.0) 623 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-01-24T02:59:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: audit 2024-01-24T02:59:54.403047+0000 mon.smithi152 (mon.0) 624 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: audit 2024-01-24T02:59:54.408843+0000 mon.smithi152 (mon.0) 625 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: cephadm 2024-01-24T02:59:54.432547+0000 mgr.smithi152.jkoscf (mgr.14182) 247 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi152.marajq 2024-01-24T02:59:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: audit 2024-01-24T02:59:54.432918+0000 mon.smithi152 (mon.0) 626 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi152.marajq", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-01-24T02:59:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: audit 2024-01-24T02:59:54.436563+0000 mon.smithi152 (mon.0) 627 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi152.marajq", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-01-24T02:59:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: cephadm 2024-01-24T02:59:54.437254+0000 mgr.smithi152.jkoscf (mgr.14182) 248 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-01-24T02:59:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: audit 2024-01-24T02:59:54.437476+0000 mon.smithi152 (mon.0) 628 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-01-24T02:59:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: audit 2024-01-24T02:59:54.440626+0000 mon.smithi152 (mon.0) 629 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-01-24T02:59:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: audit 2024-01-24T02:59:54.441689+0000 mon.smithi152 (mon.0) 630 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:59:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: audit 2024-01-24T02:59:54.901261+0000 mon.smithi152 (mon.0) 631 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-01-24T02:59:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: audit 2024-01-24T02:59:54.906288+0000 mon.smithi152 (mon.0) 632 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-01-24T02:59:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: audit 2024-01-24T02:59:54.967601+0000 mon.smithi152 (mon.0) 633 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi152.marajq-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-24T02:59:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: audit 2024-01-24T02:59:54.973368+0000 mon.smithi152 (mon.0) 634 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi152.marajq-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-24T02:59:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:55 smithi195 bash[19846]: audit 2024-01-24T02:59:54.982150+0000 mon.smithi152 (mon.0) 635 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:59:55.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: audit 2024-01-24T02:59:54.372656+0000 mon.smithi152 (mon.0) 622 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-01-24T02:59:55.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: cluster 2024-01-24T02:59:54.372812+0000 mon.smithi152 (mon.0) 623 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-01-24T02:59:55.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: audit 2024-01-24T02:59:54.403047+0000 mon.smithi152 (mon.0) 624 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:55.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: audit 2024-01-24T02:59:54.408843+0000 mon.smithi152 (mon.0) 625 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:55.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: cephadm 2024-01-24T02:59:54.432547+0000 mgr.smithi152.jkoscf (mgr.14182) 247 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi152.marajq 2024-01-24T02:59:55.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: audit 2024-01-24T02:59:54.432918+0000 mon.smithi152 (mon.0) 626 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi152.marajq", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-01-24T02:59:55.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: audit 2024-01-24T02:59:54.436563+0000 mon.smithi152 (mon.0) 627 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi152.marajq", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-01-24T02:59:55.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: cephadm 2024-01-24T02:59:54.437254+0000 mgr.smithi152.jkoscf (mgr.14182) 248 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-01-24T02:59:55.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: audit 2024-01-24T02:59:54.437476+0000 mon.smithi152 (mon.0) 628 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-01-24T02:59:55.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: audit 2024-01-24T02:59:54.440626+0000 mon.smithi152 (mon.0) 629 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-01-24T02:59:55.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: audit 2024-01-24T02:59:54.441689+0000 mon.smithi152 (mon.0) 630 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:59:55.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: audit 2024-01-24T02:59:54.901261+0000 mon.smithi152 (mon.0) 631 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-01-24T02:59:55.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: audit 2024-01-24T02:59:54.906288+0000 mon.smithi152 (mon.0) 632 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-01-24T02:59:55.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: audit 2024-01-24T02:59:54.967601+0000 mon.smithi152 (mon.0) 633 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi152.marajq-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-24T02:59:55.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: audit 2024-01-24T02:59:54.973368+0000 mon.smithi152 (mon.0) 634 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi152.marajq-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-24T02:59:55.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:55 smithi152 bash[16344]: audit 2024-01-24T02:59:54.982150+0000 mon.smithi152 (mon.0) 635 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T02:59:56.137 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libpaper-utils (1.1.24+nmu5ubuntu1) ... 2024-01-24T02:59:56.521 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-roman (2.0.0-3) ... 2024-01-24T02:59:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:56 smithi195 bash[19846]: cephadm 2024-01-24T02:59:54.966519+0000 mgr.smithi152.jkoscf (mgr.14182) 249 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-01-24T02:59:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:56 smithi195 bash[19846]: cephadm 2024-01-24T02:59:54.966760+0000 mgr.smithi152.jkoscf (mgr.14182) 250 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi152.marajq-rgw 2024-01-24T02:59:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:56 smithi195 bash[19846]: cephadm 2024-01-24T02:59:54.983631+0000 mgr.smithi152.jkoscf (mgr.14182) 251 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi152.marajq on smithi152 2024-01-24T02:59:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:56 smithi195 bash[19846]: cluster 2024-01-24T02:59:55.157563+0000 mgr.smithi152.jkoscf (mgr.14182) 252 : cluster [DBG] pgmap v221: 65 pgs: 13 creating+peering, 14 unknown, 38 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:56 smithi195 bash[19846]: cluster 2024-01-24T02:59:55.376018+0000 mon.smithi152 (mon.0) 636 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-01-24T02:59:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:56 smithi195 bash[19846]: audit 2024-01-24T02:59:55.387694+0000 mon.smithi195 (mon.1) 20 : audit [INF] from='client.? 172.21.15.195:0/2596779556' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-24T02:59:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:56 smithi195 bash[19846]: audit 2024-01-24T02:59:55.388034+0000 mon.smithi152 (mon.0) 637 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-24T02:59:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:56 smithi195 bash[19846]: audit 2024-01-24T02:59:56.380600+0000 mon.smithi152 (mon.0) 638 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-01-24T02:59:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:56 smithi195 bash[19846]: cluster 2024-01-24T02:59:56.380764+0000 mon.smithi152 (mon.0) 639 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-01-24T02:59:56.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:56 smithi152 bash[16344]: cephadm 2024-01-24T02:59:54.966519+0000 mgr.smithi152.jkoscf (mgr.14182) 249 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-01-24T02:59:56.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:56 smithi152 bash[16344]: cephadm 2024-01-24T02:59:54.966760+0000 mgr.smithi152.jkoscf (mgr.14182) 250 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi152.marajq-rgw 2024-01-24T02:59:56.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:56 smithi152 bash[16344]: cephadm 2024-01-24T02:59:54.983631+0000 mgr.smithi152.jkoscf (mgr.14182) 251 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi152.marajq on smithi152 2024-01-24T02:59:56.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:56 smithi152 bash[16344]: cluster 2024-01-24T02:59:55.157563+0000 mgr.smithi152.jkoscf (mgr.14182) 252 : cluster [DBG] pgmap v221: 65 pgs: 13 creating+peering, 14 unknown, 38 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T02:59:56.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:56 smithi152 bash[16344]: cluster 2024-01-24T02:59:55.376018+0000 mon.smithi152 (mon.0) 636 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-01-24T02:59:56.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:56 smithi152 bash[16344]: audit 2024-01-24T02:59:55.387694+0000 mon.smithi195 (mon.1) 20 : audit [INF] from='client.? 172.21.15.195:0/2596779556' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-24T02:59:56.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:56 smithi152 bash[16344]: audit 2024-01-24T02:59:55.388034+0000 mon.smithi152 (mon.0) 637 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-24T02:59:56.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:56 smithi152 bash[16344]: audit 2024-01-24T02:59:56.380600+0000 mon.smithi152 (mon.0) 638 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-01-24T02:59:56.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:56 smithi152 bash[16344]: cluster 2024-01-24T02:59:56.380764+0000 mon.smithi152 (mon.0) 639 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-01-24T02:59:56.948 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-pil:amd64 (5.1.0-1ubuntu0.8) ... 2024-01-24T02:59:57.353 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-olefile (0.45.1-1) ... 2024-01-24T02:59:57.991 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up sgml-base (1.29) ... 2024-01-24T02:59:58.143 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:57 smithi152 bash[16344]: audit 2024-01-24T02:59:56.850152+0000 mon.smithi152 (mon.0) 640 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:58.143 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:57 smithi152 bash[16344]: cluster 2024-01-24T02:59:57.158421+0000 mgr.smithi152.jkoscf (mgr.14182) 253 : cluster [DBG] pgmap v224: 97 pgs: 28 creating+peering, 10 unknown, 59 active+clean; 889 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 1 op/s 2024-01-24T02:59:58.143 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:57 smithi152 bash[16344]: cluster 2024-01-24T02:59:57.396073+0000 mon.smithi152 (mon.0) 641 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-01-24T02:59:58.143 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:57 smithi152 bash[16344]: audit 2024-01-24T02:59:57.399737+0000 mon.smithi152 (mon.0) 642 : audit [INF] from='client.? 172.21.15.152:0/3448032797' entity='client.rgw.foorgw.smithi152.lohnfz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-24T02:59:58.143 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:57 smithi152 bash[16344]: audit 2024-01-24T02:59:57.399981+0000 mon.smithi195 (mon.1) 21 : audit [INF] from='client.? 172.21.15.195:0/2596779556' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-24T02:59:58.143 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:57 smithi152 bash[16344]: audit 2024-01-24T02:59:57.400789+0000 mon.smithi152 (mon.0) 643 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-24T02:59:58.144 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-jmespath (0.9.3-1ubuntu1.1) ... 2024-01-24T02:59:58.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:57 smithi195 bash[19846]: audit 2024-01-24T02:59:56.850152+0000 mon.smithi152 (mon.0) 640 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:58.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:57 smithi195 bash[19846]: cluster 2024-01-24T02:59:57.158421+0000 mgr.smithi152.jkoscf (mgr.14182) 253 : cluster [DBG] pgmap v224: 97 pgs: 28 creating+peering, 10 unknown, 59 active+clean; 889 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 1 op/s 2024-01-24T02:59:58.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:57 smithi195 bash[19846]: cluster 2024-01-24T02:59:57.396073+0000 mon.smithi152 (mon.0) 641 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-01-24T02:59:58.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:57 smithi195 bash[19846]: audit 2024-01-24T02:59:57.399737+0000 mon.smithi152 (mon.0) 642 : audit [INF] from='client.? 172.21.15.152:0/3448032797' entity='client.rgw.foorgw.smithi152.lohnfz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-24T02:59:58.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:57 smithi195 bash[19846]: audit 2024-01-24T02:59:57.399981+0000 mon.smithi195 (mon.1) 21 : audit [INF] from='client.? 172.21.15.195:0/2596779556' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-24T02:59:58.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:57 smithi195 bash[19846]: audit 2024-01-24T02:59:57.400789+0000 mon.smithi152 (mon.0) 643 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-24T02:59:58.738 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up xml-core (0.18) ... 2024-01-24T02:59:59.598 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-dateutil (2.6.1-1) ... 2024-01-24T02:59:59.707 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:59 smithi152 bash[16344]: audit 2024-01-24T02:59:58.297326+0000 mon.smithi152 (mon.0) 644 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:59.707 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:59 smithi152 bash[16344]: audit 2024-01-24T02:59:58.307052+0000 mon.smithi152 (mon.0) 645 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:59.707 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:59 smithi152 bash[16344]: cephadm 2024-01-24T02:59:58.319809+0000 mgr.smithi152.jkoscf (mgr.14182) 254 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.pvxhup on smithi195 2024-01-24T02:59:59.707 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:59 smithi152 bash[16344]: audit 2024-01-24T02:59:58.396501+0000 mon.smithi152 (mon.0) 646 : audit [INF] from='client.? 172.21.15.152:0/3448032797' entity='client.rgw.foorgw.smithi152.lohnfz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-01-24T02:59:59.707 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:59 smithi152 bash[16344]: audit 2024-01-24T02:59:58.396965+0000 mon.smithi152 (mon.0) 647 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-01-24T02:59:59.707 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 02:59:59 smithi152 bash[16344]: cluster 2024-01-24T02:59:58.397261+0000 mon.smithi152 (mon.0) 648 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-01-24T02:59:59.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:59 smithi195 bash[19846]: audit 2024-01-24T02:59:58.297326+0000 mon.smithi152 (mon.0) 644 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:59.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:59 smithi195 bash[19846]: audit 2024-01-24T02:59:58.307052+0000 mon.smithi152 (mon.0) 645 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T02:59:59.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:59 smithi195 bash[19846]: cephadm 2024-01-24T02:59:58.319809+0000 mgr.smithi152.jkoscf (mgr.14182) 254 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.pvxhup on smithi195 2024-01-24T02:59:59.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:59 smithi195 bash[19846]: audit 2024-01-24T02:59:58.396501+0000 mon.smithi152 (mon.0) 646 : audit [INF] from='client.? 172.21.15.152:0/3448032797' entity='client.rgw.foorgw.smithi152.lohnfz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-01-24T02:59:59.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:59 smithi195 bash[19846]: audit 2024-01-24T02:59:58.396965+0000 mon.smithi152 (mon.0) 647 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-01-24T02:59:59.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 02:59:59 smithi195 bash[19846]: cluster 2024-01-24T02:59:58.397261+0000 mon.smithi152 (mon.0) 648 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-01-24T02:59:59.916 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-pygments (2.2.0+dfsg-1ubuntu0.2) ... 2024-01-24T03:00:00.476 INFO:teuthology.orchestra.run.smithi152.stdout:Processing triggers for libc-bin (2.27-3ubuntu1.6) ... 2024-01-24T03:00:00.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:00 smithi195 bash[19846]: cluster 2024-01-24T02:59:59.159364+0000 mgr.smithi152.jkoscf (mgr.14182) 255 : cluster [DBG] pgmap v227: 129 pgs: 15 creating+peering, 26 unknown, 88 active+clean; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.7 KiB/s rd, 1.7 KiB/s wr, 5 op/s 2024-01-24T03:00:00.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:00 smithi195 bash[19846]: cluster 2024-01-24T02:59:59.401773+0000 mon.smithi152 (mon.0) 649 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-01-24T03:00:00.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:00 smithi195 bash[19846]: audit 2024-01-24T02:59:59.402546+0000 mon.smithi152 (mon.0) 650 : audit [INF] from='client.? 172.21.15.152:0/814544273' entity='client.rgw.foorgw.smithi152.lohnfz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-24T03:00:00.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:00 smithi195 bash[19846]: audit 2024-01-24T02:59:59.407500+0000 mon.smithi195 (mon.1) 22 : audit [INF] from='client.? 172.21.15.195:0/647092625' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-24T03:00:00.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:00 smithi195 bash[19846]: audit 2024-01-24T02:59:59.409931+0000 mon.smithi152 (mon.0) 651 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-24T03:00:00.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:00 smithi195 bash[19846]: cluster 2024-01-24T03:00:00.000171+0000 mon.smithi152 (mon.0) 652 : cluster [INF] overall HEALTH_OK 2024-01-24T03:00:00.588 INFO:teuthology.orchestra.run.smithi152.stdout:Processing triggers for man-db (2.8.3-2ubuntu0.1) ... 2024-01-24T03:00:00.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:00 smithi152 bash[16344]: cluster 2024-01-24T02:59:59.159364+0000 mgr.smithi152.jkoscf (mgr.14182) 255 : cluster [DBG] pgmap v227: 129 pgs: 15 creating+peering, 26 unknown, 88 active+clean; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.7 KiB/s rd, 1.7 KiB/s wr, 5 op/s 2024-01-24T03:00:00.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:00 smithi152 bash[16344]: cluster 2024-01-24T02:59:59.401773+0000 mon.smithi152 (mon.0) 649 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-01-24T03:00:00.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:00 smithi152 bash[16344]: audit 2024-01-24T02:59:59.402546+0000 mon.smithi152 (mon.0) 650 : audit [INF] from='client.? 172.21.15.152:0/814544273' entity='client.rgw.foorgw.smithi152.lohnfz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-24T03:00:00.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:00 smithi152 bash[16344]: audit 2024-01-24T02:59:59.407500+0000 mon.smithi195 (mon.1) 22 : audit [INF] from='client.? 172.21.15.195:0/647092625' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-24T03:00:00.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:00 smithi152 bash[16344]: audit 2024-01-24T02:59:59.409931+0000 mon.smithi152 (mon.0) 651 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-24T03:00:00.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:00 smithi152 bash[16344]: cluster 2024-01-24T03:00:00.000171+0000 mon.smithi152 (mon.0) 652 : cluster [INF] overall HEALTH_OK 2024-01-24T03:00:01.273 INFO:teuthology.orchestra.run.smithi152.stdout:Processing triggers for shared-mime-info (1.9-2) ... 2024-01-24T03:00:01.722 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:01 smithi195 bash[19846]: audit 2024-01-24T03:00:00.406585+0000 mon.smithi152 (mon.0) 653 : audit [INF] from='client.? 172.21.15.152:0/814544273' entity='client.rgw.foorgw.smithi152.lohnfz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-01-24T03:00:01.722 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:01 smithi195 bash[19846]: audit 2024-01-24T03:00:00.406943+0000 mon.smithi152 (mon.0) 654 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-01-24T03:00:01.722 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:01 smithi195 bash[19846]: cluster 2024-01-24T03:00:00.407149+0000 mon.smithi152 (mon.0) 655 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-01-24T03:00:01.722 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:01 smithi195 bash[19846]: audit 2024-01-24T03:00:00.413600+0000 mon.smithi152 (mon.0) 656 : audit [INF] from='client.? 172.21.15.152:0/814544273' entity='client.rgw.foorgw.smithi152.lohnfz' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-24T03:00:01.722 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:01 smithi195 bash[19846]: audit 2024-01-24T03:00:00.417504+0000 mon.smithi195 (mon.1) 23 : audit [INF] from='client.? 172.21.15.195:0/647092625' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-24T03:00:01.722 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:01 smithi195 bash[19846]: audit 2024-01-24T03:00:00.418137+0000 mon.smithi152 (mon.0) 657 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-24T03:00:01.829 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:01 smithi152 bash[16344]: audit 2024-01-24T03:00:00.406585+0000 mon.smithi152 (mon.0) 653 : audit [INF] from='client.? 172.21.15.152:0/814544273' entity='client.rgw.foorgw.smithi152.lohnfz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-01-24T03:00:01.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:01 smithi152 bash[16344]: audit 2024-01-24T03:00:00.406943+0000 mon.smithi152 (mon.0) 654 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-01-24T03:00:01.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:01 smithi152 bash[16344]: cluster 2024-01-24T03:00:00.407149+0000 mon.smithi152 (mon.0) 655 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-01-24T03:00:01.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:01 smithi152 bash[16344]: audit 2024-01-24T03:00:00.413600+0000 mon.smithi152 (mon.0) 656 : audit [INF] from='client.? 172.21.15.152:0/814544273' entity='client.rgw.foorgw.smithi152.lohnfz' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-24T03:00:01.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:01 smithi152 bash[16344]: audit 2024-01-24T03:00:00.417504+0000 mon.smithi195 (mon.1) 23 : audit [INF] from='client.? 172.21.15.195:0/647092625' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-24T03:00:01.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:01 smithi152 bash[16344]: audit 2024-01-24T03:00:00.418137+0000 mon.smithi152 (mon.0) 657 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-24T03:00:02.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:02 smithi195 bash[19846]: cluster 2024-01-24T03:00:01.160502+0000 mgr.smithi152.jkoscf (mgr.14182) 256 : cluster [DBG] pgmap v230: 161 pgs: 5 creating+peering, 25 unknown, 131 active+clean; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.5 KiB/s rd, 1023 B/s wr, 4 op/s 2024-01-24T03:00:02.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:02 smithi195 bash[19846]: audit 2024-01-24T03:00:01.423292+0000 mon.smithi152 (mon.0) 658 : audit [INF] from='client.? 172.21.15.152:0/814544273' entity='client.rgw.foorgw.smithi152.lohnfz' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-24T03:00:02.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:02 smithi195 bash[19846]: audit 2024-01-24T03:00:01.423443+0000 mon.smithi152 (mon.0) 659 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-24T03:00:02.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:02 smithi195 bash[19846]: cluster 2024-01-24T03:00:01.423592+0000 mon.smithi152 (mon.0) 660 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-01-24T03:00:02.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:02 smithi195 bash[19846]: audit 2024-01-24T03:00:01.859939+0000 mon.smithi152 (mon.0) 661 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:02.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:02 smithi152 bash[16344]: cluster 2024-01-24T03:00:01.160502+0000 mgr.smithi152.jkoscf (mgr.14182) 256 : cluster [DBG] pgmap v230: 161 pgs: 5 creating+peering, 25 unknown, 131 active+clean; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.5 KiB/s rd, 1023 B/s wr, 4 op/s 2024-01-24T03:00:02.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:02 smithi152 bash[16344]: audit 2024-01-24T03:00:01.423292+0000 mon.smithi152 (mon.0) 658 : audit [INF] from='client.? 172.21.15.152:0/814544273' entity='client.rgw.foorgw.smithi152.lohnfz' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-24T03:00:02.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:02 smithi152 bash[16344]: audit 2024-01-24T03:00:01.423443+0000 mon.smithi152 (mon.0) 659 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.fhqphd' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-24T03:00:02.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:02 smithi152 bash[16344]: cluster 2024-01-24T03:00:01.423592+0000 mon.smithi152 (mon.0) 660 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-01-24T03:00:02.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:02 smithi152 bash[16344]: audit 2024-01-24T03:00:01.859939+0000 mon.smithi152 (mon.0) 661 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:03.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:03 smithi195 bash[19846]: audit 2024-01-24T03:00:02.907091+0000 mon.smithi152 (mon.0) 662 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.pvxhup"}]: dispatch 2024-01-24T03:00:03.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:03 smithi152 bash[16344]: audit 2024-01-24T03:00:02.907091+0000 mon.smithi152 (mon.0) 662 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.pvxhup"}]: dispatch 2024-01-24T03:00:04.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: cephadm 2024-01-24T03:00:02.906166+0000 mgr.smithi152.jkoscf (mgr.14182) 257 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pvxhup 2024-01-24T03:00:04.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:04.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pvxhup 2024-01-24T03:00:04.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.pvxhup ... 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pvxhup 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pvxhup 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.pvxhup ... 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: cephadm 2024-01-24T03:00:02.906542+0000 mgr.smithi152.jkoscf (mgr.14182) 258 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: cephadm 2024-01-24T03:00:02.908251+0000 mgr.smithi152.jkoscf (mgr.14182) 259 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.pvxhup on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pvxhup 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pvxhup 2024-01-24T03:00:04.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:04.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.pvxhup ... 2024-01-24T03:00:04.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:04.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:04.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:04.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:04.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:04.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: cephadm 2024-01-24T03:00:02.911751+0000 mgr.smithi152.jkoscf (mgr.14182) 260 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.kgfdmb on smithi152 2024-01-24T03:00:04.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:04 smithi195 bash[19846]: cluster 2024-01-24T03:00:03.161294+0000 mgr.smithi152.jkoscf (mgr.14182) 261 : cluster [DBG] pgmap v232: 161 pgs: 5 creating+peering, 16 unknown, 140 active+clean; 2.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 50 KiB/s rd, 3.6 KiB/s wr, 90 op/s 2024-01-24T03:00:04.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: cephadm 2024-01-24T03:00:02.906166+0000 mgr.smithi152.jkoscf (mgr.14182) 257 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pvxhup 2024-01-24T03:00:04.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:04.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pvxhup 2024-01-24T03:00:04.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:04.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.pvxhup ... 2024-01-24T03:00:04.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:04.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:04.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:04.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:04.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:04.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:00:04.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:00:04.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:00:04.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:00:04.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:00:04.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pvxhup 2024-01-24T03:00:04.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:04.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pvxhup 2024-01-24T03:00:04.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:04.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.pvxhup ... 2024-01-24T03:00:04.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:04.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:04.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:04.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:04.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:04.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: cephadm 2024-01-24T03:00:02.906542+0000 mgr.smithi152.jkoscf (mgr.14182) 258 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: cephadm 2024-01-24T03:00:02.908251+0000 mgr.smithi152.jkoscf (mgr.14182) 259 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.pvxhup on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pvxhup 2024-01-24T03:00:04.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:04.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pvxhup 2024-01-24T03:00:04.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:04.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pvxhup 2024-01-24T03:00:04.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.pvxhup ... 2024-01-24T03:00:04.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:04.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:04.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:04.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:04.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:04.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: cephadm 2024-01-24T03:00:02.911751+0000 mgr.smithi152.jkoscf (mgr.14182) 260 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.kgfdmb on smithi152 2024-01-24T03:00:04.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:04 smithi152 bash[16344]: cluster 2024-01-24T03:00:03.161294+0000 mgr.smithi152.jkoscf (mgr.14182) 261 : cluster [DBG] pgmap v232: 161 pgs: 5 creating+peering, 16 unknown, 140 active+clean; 2.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 50 KiB/s rd, 3.6 KiB/s wr, 90 op/s 2024-01-24T03:00:06.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:06 smithi195 bash[19846]: cluster 2024-01-24T03:00:05.162568+0000 mgr.smithi152.jkoscf (mgr.14182) 262 : cluster [DBG] pgmap v233: 161 pgs: 161 active+clean; 3.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 90 KiB/s rd, 3.7 KiB/s wr, 169 op/s 2024-01-24T03:00:06.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:06 smithi152 bash[16344]: cluster 2024-01-24T03:00:05.162568+0000 mgr.smithi152.jkoscf (mgr.14182) 262 : cluster [DBG] pgmap v233: 161 pgs: 161 active+clean; 3.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 90 KiB/s rd, 3.7 KiB/s wr, 169 op/s 2024-01-24T03:00:08.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:08 smithi195 bash[19846]: cluster 2024-01-24T03:00:07.163834+0000 mgr.smithi152.jkoscf (mgr.14182) 263 : cluster [DBG] pgmap v234: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 152 KiB/s rd, 5.0 KiB/s wr, 288 op/s 2024-01-24T03:00:08.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:08 smithi152 bash[16344]: cluster 2024-01-24T03:00:07.163834+0000 mgr.smithi152.jkoscf (mgr.14182) 263 : cluster [DBG] pgmap v234: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 152 KiB/s rd, 5.0 KiB/s wr, 288 op/s 2024-01-24T03:00:09.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: cephadm 2024-01-24T03:00:08.625503+0000 mgr.smithi152.jkoscf (mgr.14182) 264 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-kgfdmb 2024-01-24T03:00:09.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:09.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-kgfdmb 2024-01-24T03:00:09.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:09.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.kgfdmb ... 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-kgfdmb 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:09.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-kgfdmb 2024-01-24T03:00:09.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:09.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.kgfdmb ... 2024-01-24T03:00:09.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:09.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:09.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:09.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:09.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:09.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: cephadm 2024-01-24T03:00:08.625943+0000 mgr.smithi152.jkoscf (mgr.14182) 265 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: audit 2024-01-24T03:00:08.626580+0000 mon.smithi152 (mon.0) 663 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.kgfdmb"}]: dispatch 2024-01-24T03:00:09.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: cephadm 2024-01-24T03:00:08.627939+0000 mgr.smithi152.jkoscf (mgr.14182) 266 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.kgfdmb on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-kgfdmb 2024-01-24T03:00:09.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:09.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-kgfdmb 2024-01-24T03:00:09.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:09.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.kgfdmb ... 2024-01-24T03:00:09.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:09.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:09.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:09.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:09.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:09.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: audit 2024-01-24T03:00:08.638473+0000 mon.smithi152 (mon.0) 664 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:09.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: cephadm 2024-01-24T03:00:08.639166+0000 mgr.smithi152.jkoscf (mgr.14182) 267 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.mepmcl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:00:09.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: cephadm 2024-01-24T03:00:08.641713+0000 mgr.smithi152.jkoscf (mgr.14182) 268 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.enjoab on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:00:09.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: cluster 2024-01-24T03:00:08.642729+0000 mgr.smithi152.jkoscf (mgr.14182) 269 : cluster [DBG] pgmap v235: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 143 KiB/s rd, 4.7 KiB/s wr, 271 op/s 2024-01-24T03:00:09.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:09 smithi195 bash[19846]: audit 2024-01-24T03:00:08.644113+0000 mon.smithi152 (mon.0) 665 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:00:09.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: cephadm 2024-01-24T03:00:08.625503+0000 mgr.smithi152.jkoscf (mgr.14182) 264 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-kgfdmb 2024-01-24T03:00:09.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:09.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-kgfdmb 2024-01-24T03:00:09.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:09.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.kgfdmb ... 2024-01-24T03:00:09.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:09.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:09.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:09.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:09.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-kgfdmb 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-kgfdmb 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.kgfdmb ... 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:09.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: cephadm 2024-01-24T03:00:08.625943+0000 mgr.smithi152.jkoscf (mgr.14182) 265 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: audit 2024-01-24T03:00:08.626580+0000 mon.smithi152 (mon.0) 663 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.kgfdmb"}]: dispatch 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: cephadm 2024-01-24T03:00:08.627939+0000 mgr.smithi152.jkoscf (mgr.14182) 266 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.kgfdmb on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-kgfdmb 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-kgfdmb 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.kgfdmb 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.kgfdmb ... 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:09.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:09.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:09.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: audit 2024-01-24T03:00:08.638473+0000 mon.smithi152 (mon.0) 664 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:09.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: cephadm 2024-01-24T03:00:08.639166+0000 mgr.smithi152.jkoscf (mgr.14182) 267 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.mepmcl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:00:09.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: cephadm 2024-01-24T03:00:08.641713+0000 mgr.smithi152.jkoscf (mgr.14182) 268 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.enjoab on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:00:09.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: cluster 2024-01-24T03:00:08.642729+0000 mgr.smithi152.jkoscf (mgr.14182) 269 : cluster [DBG] pgmap v235: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 143 KiB/s rd, 4.7 KiB/s wr, 271 op/s 2024-01-24T03:00:09.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:09 smithi152 bash[16344]: audit 2024-01-24T03:00:08.644113+0000 mon.smithi152 (mon.0) 665 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:00:10.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:10 smithi195 bash[19846]: cluster 2024-01-24T03:00:09.634538+0000 mon.smithi152 (mon.0) 666 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:00:10.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:10 smithi152 bash[16344]: cluster 2024-01-24T03:00:09.634538+0000 mon.smithi152 (mon.0) 666 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:00:11.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:11 smithi195 bash[19846]: cluster 2024-01-24T03:00:10.644298+0000 mgr.smithi152.jkoscf (mgr.14182) 270 : cluster [DBG] pgmap v236: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 147 KiB/s rd, 4.1 KiB/s wr, 270 op/s 2024-01-24T03:00:11.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:11 smithi152 bash[16344]: cluster 2024-01-24T03:00:10.644298+0000 mgr.smithi152.jkoscf (mgr.14182) 270 : cluster [DBG] pgmap v236: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 147 KiB/s rd, 4.1 KiB/s wr, 270 op/s 2024-01-24T03:00:13.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:12 smithi195 bash[19846]: audit 2024-01-24T03:00:11.876997+0000 mon.smithi152 (mon.0) 667 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:13.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:12 smithi195 bash[19846]: cluster 2024-01-24T03:00:12.644938+0000 mgr.smithi152.jkoscf (mgr.14182) 271 : cluster [DBG] pgmap v237: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 125 KiB/s rd, 3.5 KiB/s wr, 229 op/s 2024-01-24T03:00:13.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:12 smithi152 bash[16344]: audit 2024-01-24T03:00:11.876997+0000 mon.smithi152 (mon.0) 667 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:13.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:12 smithi152 bash[16344]: cluster 2024-01-24T03:00:12.644938+0000 mgr.smithi152.jkoscf (mgr.14182) 271 : cluster [DBG] pgmap v237: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 125 KiB/s rd, 3.5 KiB/s wr, 229 op/s 2024-01-24T03:00:15.776 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:15 smithi152 bash[16344]: audit 2024-01-24T03:00:14.532133+0000 mon.smithi152 (mon.0) 668 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:15.777 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:15 smithi152 bash[16344]: cluster 2024-01-24T03:00:14.645819+0000 mgr.smithi152.jkoscf (mgr.14182) 272 : cluster [DBG] pgmap v238: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 104 KiB/s rd, 2.3 KiB/s wr, 189 op/s 2024-01-24T03:00:15.777 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:15 smithi152 bash[16344]: audit 2024-01-24T03:00:14.802931+0000 mon.smithi152 (mon.0) 669 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:15.777 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:15 smithi152 bash[16344]: audit 2024-01-24T03:00:15.093270+0000 mon.smithi152 (mon.0) 670 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:00:15.777 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:15 smithi152 bash[16344]: audit 2024-01-24T03:00:15.094846+0000 mon.smithi152 (mon.0) 671 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:00:15.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:15 smithi195 bash[19846]: audit 2024-01-24T03:00:14.532133+0000 mon.smithi152 (mon.0) 668 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:15.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:15 smithi195 bash[19846]: cluster 2024-01-24T03:00:14.645819+0000 mgr.smithi152.jkoscf (mgr.14182) 272 : cluster [DBG] pgmap v238: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 104 KiB/s rd, 2.3 KiB/s wr, 189 op/s 2024-01-24T03:00:15.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:15 smithi195 bash[19846]: audit 2024-01-24T03:00:14.802931+0000 mon.smithi152 (mon.0) 669 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:15.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:15 smithi195 bash[19846]: audit 2024-01-24T03:00:15.093270+0000 mon.smithi152 (mon.0) 670 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:00:15.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:15 smithi195 bash[19846]: audit 2024-01-24T03:00:15.094846+0000 mon.smithi152 (mon.0) 671 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:00:16.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:16 smithi152 bash[16344]: cephadm 2024-01-24T03:00:15.352257+0000 mgr.smithi152.jkoscf (mgr.14182) 273 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-01-24T03:00:16.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:16 smithi152 bash[16344]: audit 2024-01-24T03:00:15.760295+0000 mon.smithi152 (mon.0) 672 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:16.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:16 smithi152 bash[16344]: audit 2024-01-24T03:00:15.770179+0000 mon.smithi152 (mon.0) 673 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:16.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:16 smithi152 bash[16344]: audit 2024-01-24T03:00:15.777510+0000 mon.smithi152 (mon.0) 674 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:16.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:16 smithi152 bash[16344]: audit 2024-01-24T03:00:15.791845+0000 mon.smithi152 (mon.0) 675 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:00:16.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:16 smithi152 bash[16344]: audit 2024-01-24T03:00:15.808742+0000 mon.smithi152 (mon.0) 676 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:16.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:16 smithi195 bash[19846]: cephadm 2024-01-24T03:00:15.352257+0000 mgr.smithi152.jkoscf (mgr.14182) 273 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-01-24T03:00:16.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:16 smithi195 bash[19846]: audit 2024-01-24T03:00:15.760295+0000 mon.smithi152 (mon.0) 672 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:16.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:16 smithi195 bash[19846]: audit 2024-01-24T03:00:15.770179+0000 mon.smithi152 (mon.0) 673 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:16.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:16 smithi195 bash[19846]: audit 2024-01-24T03:00:15.777510+0000 mon.smithi152 (mon.0) 674 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:16.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:16 smithi195 bash[19846]: audit 2024-01-24T03:00:15.791845+0000 mon.smithi152 (mon.0) 675 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:00:16.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:16 smithi195 bash[19846]: audit 2024-01-24T03:00:15.808742+0000 mon.smithi152 (mon.0) 676 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:17.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:17 smithi152 bash[16344]: cluster 2024-01-24T03:00:15.779209+0000 mgr.smithi152.jkoscf (mgr.14182) 274 : cluster [DBG] pgmap v239: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 90 KiB/s rd, 1.6 KiB/s wr, 159 op/s 2024-01-24T03:00:17.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:17 smithi152 bash[16344]: cephadm 2024-01-24T03:00:15.816672+0000 mgr.smithi152.jkoscf (mgr.14182) 275 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.offqql on smithi195 2024-01-24T03:00:17.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:17 smithi152 bash[16344]: cluster 2024-01-24T03:00:16.774967+0000 mon.smithi152 (mon.0) 677 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:00:17.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:17 smithi152 bash[16344]: cluster 2024-01-24T03:00:16.774993+0000 mon.smithi152 (mon.0) 678 : cluster [INF] Cluster is now healthy 2024-01-24T03:00:17.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:17 smithi195 bash[19846]: cluster 2024-01-24T03:00:15.779209+0000 mgr.smithi152.jkoscf (mgr.14182) 274 : cluster [DBG] pgmap v239: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 90 KiB/s rd, 1.6 KiB/s wr, 159 op/s 2024-01-24T03:00:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:17 smithi195 bash[19846]: cephadm 2024-01-24T03:00:15.816672+0000 mgr.smithi152.jkoscf (mgr.14182) 275 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.offqql on smithi195 2024-01-24T03:00:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:17 smithi195 bash[19846]: cluster 2024-01-24T03:00:16.774967+0000 mon.smithi152 (mon.0) 677 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:00:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:17 smithi195 bash[19846]: cluster 2024-01-24T03:00:16.774993+0000 mon.smithi152 (mon.0) 678 : cluster [INF] Cluster is now healthy 2024-01-24T03:00:19.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:19 smithi195 bash[19846]: cluster 2024-01-24T03:00:17.780143+0000 mgr.smithi152.jkoscf (mgr.14182) 276 : cluster [DBG] pgmap v240: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 30 KiB/s rd, 96 B/s wr, 45 op/s 2024-01-24T03:00:19.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:19 smithi195 bash[19846]: audit 2024-01-24T03:00:19.546295+0000 mon.smithi152 (mon.0) 679 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.offqql"}]: dispatch 2024-01-24T03:00:19.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:19 smithi152 bash[16344]: cluster 2024-01-24T03:00:17.780143+0000 mgr.smithi152.jkoscf (mgr.14182) 276 : cluster [DBG] pgmap v240: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 30 KiB/s rd, 96 B/s wr, 45 op/s 2024-01-24T03:00:19.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:19 smithi152 bash[16344]: audit 2024-01-24T03:00:19.546295+0000 mon.smithi152 (mon.0) 679 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.offqql"}]: dispatch 2024-01-24T03:00:20.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: cephadm 2024-01-24T03:00:19.544880+0000 mgr.smithi152.jkoscf (mgr.14182) 277 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-offqql 2024-01-24T03:00:20.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:20.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-offqql 2024-01-24T03:00:20.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:20.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.offqql ... 2024-01-24T03:00:20.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:20.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:20.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:20.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:20.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:20.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:00:20.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:00:20.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:00:20.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:00:20.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:00:20.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-offqql 2024-01-24T03:00:20.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:20.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-offqql 2024-01-24T03:00:20.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.offqql ... 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: cephadm 2024-01-24T03:00:19.545553+0000 mgr.smithi152.jkoscf (mgr.14182) 278 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: cephadm 2024-01-24T03:00:19.548458+0000 mgr.smithi152.jkoscf (mgr.14182) 279 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.offqql on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-offqql 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-offqql 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:20.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.offqql ... 2024-01-24T03:00:20.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:20.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:20.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:20.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:20.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:20.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:20 smithi152 bash[16344]: cephadm 2024-01-24T03:00:19.553585+0000 mgr.smithi152.jkoscf (mgr.14182) 280 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.biinrl on smithi152 2024-01-24T03:00:20.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: cephadm 2024-01-24T03:00:19.544880+0000 mgr.smithi152.jkoscf (mgr.14182) 277 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-offqql 2024-01-24T03:00:20.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:20.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-offqql 2024-01-24T03:00:20.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.offqql ... 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:00:20.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-offqql 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-offqql 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.offqql ... 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: cephadm 2024-01-24T03:00:19.545553+0000 mgr.smithi152.jkoscf (mgr.14182) 278 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: cephadm 2024-01-24T03:00:19.548458+0000 mgr.smithi152.jkoscf (mgr.14182) 279 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.offqql on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-offqql 2024-01-24T03:00:20.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:20.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-offqql 2024-01-24T03:00:20.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:20.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.offqql 2024-01-24T03:00:20.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.offqql ... 2024-01-24T03:00:20.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:20.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:20.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:20.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:20.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:20.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:20 smithi195 bash[19846]: cephadm 2024-01-24T03:00:19.553585+0000 mgr.smithi152.jkoscf (mgr.14182) 280 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.biinrl on smithi152 2024-01-24T03:00:21.522 INFO:teuthology.orchestra.run.smithi152.stdout:Processing triggers for sgml-base (1.29) ... 2024-01-24T03:00:21.652 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up docutils-common (0.14+dfsg-3) ... 2024-01-24T03:00:21.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:21 smithi152 bash[16344]: cluster 2024-01-24T03:00:19.781464+0000 mgr.smithi152.jkoscf (mgr.14182) 281 : cluster [DBG] pgmap v241: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 30 KiB/s rd, 183 B/s wr, 44 op/s 2024-01-24T03:00:21.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:21 smithi195 bash[19846]: cluster 2024-01-24T03:00:19.781464+0000 mgr.smithi152.jkoscf (mgr.14182) 281 : cluster [DBG] pgmap v241: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 30 KiB/s rd, 183 B/s wr, 44 op/s 2024-01-24T03:00:22.060 INFO:teuthology.orchestra.run.smithi152.stdout:Processing triggers for sgml-base (1.29) ... 2024-01-24T03:00:22.191 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-docutils (0.14+dfsg-3) ... 2024-01-24T03:00:22.591 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode 2024-01-24T03:00:22.643 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode 2024-01-24T03:00:22.681 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode 2024-01-24T03:00:22.723 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode 2024-01-24T03:00:22.757 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode 2024-01-24T03:00:22.799 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode 2024-01-24T03:00:22.816 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode 2024-01-24T03:00:22.842 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode 2024-01-24T03:00:22.859 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode 2024-01-24T03:00:22.884 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode 2024-01-24T03:00:22.901 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode 2024-01-24T03:00:22.952 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode 2024-01-24T03:00:22.994 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode 2024-01-24T03:00:23.420 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-botocore (1.16.19+repack-1ubuntu0.18.04.1) ... 2024-01-24T03:00:23.772 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-s3transfer (0.3.3-1ubuntu0.18.04.1) ... 2024-01-24T03:00:23.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:23 smithi152 bash[16344]: cluster 2024-01-24T03:00:21.782631+0000 mgr.smithi152.jkoscf (mgr.14182) 282 : cluster [DBG] pgmap v242: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 183 B/s wr, 15 op/s 2024-01-24T03:00:23.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:23 smithi152 bash[16344]: audit 2024-01-24T03:00:23.426837+0000 mon.smithi152 (mon.0) 680 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.biinrl"}]: dispatch 2024-01-24T03:00:23.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:23 smithi152 bash[16344]: audit 2024-01-24T03:00:23.440595+0000 mon.smithi152 (mon.0) 681 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:00:23.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:23 smithi195 bash[19846]: cluster 2024-01-24T03:00:21.782631+0000 mgr.smithi152.jkoscf (mgr.14182) 282 : cluster [DBG] pgmap v242: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 183 B/s wr, 15 op/s 2024-01-24T03:00:23.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:23 smithi195 bash[19846]: audit 2024-01-24T03:00:23.426837+0000 mon.smithi152 (mon.0) 680 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.biinrl"}]: dispatch 2024-01-24T03:00:23.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:23 smithi195 bash[19846]: audit 2024-01-24T03:00:23.440595+0000 mon.smithi152 (mon.0) 681 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:00:24.124 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-boto3 (1.4.2-1) ... 2024-01-24T03:00:24.807 DEBUG:teuthology.orchestra.run.smithi152:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c '/home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json' 2024-01-24T03:00:24.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: cephadm 2024-01-24T03:00:23.425900+0000 mgr.smithi152.jkoscf (mgr.14182) 283 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-biinrl 2024-01-24T03:00:24.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:24.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-biinrl 2024-01-24T03:00:24.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:24.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.biinrl ... 2024-01-24T03:00:24.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:24.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:24.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:24.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:24.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:24.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:00:24.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:00:24.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:00:24.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:00:24.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:00:24.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-biinrl 2024-01-24T03:00:24.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:24.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-biinrl 2024-01-24T03:00:24.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:24.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.biinrl ... 2024-01-24T03:00:24.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:24.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:24.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: cephadm 2024-01-24T03:00:23.426362+0000 mgr.smithi152.jkoscf (mgr.14182) 284 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: cephadm 2024-01-24T03:00:23.427946+0000 mgr.smithi152.jkoscf (mgr.14182) 285 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.biinrl on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-biinrl 2024-01-24T03:00:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-biinrl 2024-01-24T03:00:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.biinrl ... 2024-01-24T03:00:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:24.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:24.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:24.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: cephadm 2024-01-24T03:00:23.431659+0000 mgr.smithi152.jkoscf (mgr.14182) 286 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.wahcwy on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:00:24.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: cephadm 2024-01-24T03:00:23.433912+0000 mgr.smithi152.jkoscf (mgr.14182) 287 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:00:24.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: cluster 2024-01-24T03:00:23.434852+0000 mgr.smithi152.jkoscf (mgr.14182) 288 : cluster [DBG] pgmap v243: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 189 B/s wr, 15 op/s 2024-01-24T03:00:24.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: cluster 2024-01-24T03:00:24.202449+0000 mon.smithi152 (mon.0) 682 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:00:24.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:24 smithi152 bash[16344]: audit 2024-01-24T03:00:24.267063+0000 mon.smithi152 (mon.0) 683 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:24.842 INFO:teuthology.orchestra.run.smithi152.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-01-24T03:00:24.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: cephadm 2024-01-24T03:00:23.425900+0000 mgr.smithi152.jkoscf (mgr.14182) 283 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-biinrl 2024-01-24T03:00:24.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:24.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-biinrl 2024-01-24T03:00:24.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.biinrl ... 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:00:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-biinrl 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-biinrl 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.biinrl ... 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: cephadm 2024-01-24T03:00:23.426362+0000 mgr.smithi152.jkoscf (mgr.14182) 284 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: cephadm 2024-01-24T03:00:23.427946+0000 mgr.smithi152.jkoscf (mgr.14182) 285 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.biinrl on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-biinrl 2024-01-24T03:00:24.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-biinrl 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.biinrl 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.biinrl ... 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: cephadm 2024-01-24T03:00:23.431659+0000 mgr.smithi152.jkoscf (mgr.14182) 286 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.wahcwy on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: cephadm 2024-01-24T03:00:23.433912+0000 mgr.smithi152.jkoscf (mgr.14182) 287 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: cluster 2024-01-24T03:00:23.434852+0000 mgr.smithi152.jkoscf (mgr.14182) 288 : cluster [DBG] pgmap v243: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 189 B/s wr, 15 op/s 2024-01-24T03:00:24.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: cluster 2024-01-24T03:00:24.202449+0000 mon.smithi152 (mon.0) 682 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:00:24.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:24 smithi195 bash[19846]: audit 2024-01-24T03:00:24.267063+0000 mon.smithi152 (mon.0) 683 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:26.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:26 smithi152 bash[16344]: cluster 2024-01-24T03:00:25.436356+0000 mgr.smithi152.jkoscf (mgr.14182) 289 : cluster [DBG] pgmap v244: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.7 KiB/s rd, 189 B/s wr, 13 op/s 2024-01-24T03:00:26.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:26 smithi195 bash[19846]: cluster 2024-01-24T03:00:25.436356+0000 mgr.smithi152.jkoscf (mgr.14182) 289 : cluster [DBG] pgmap v244: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.7 KiB/s rd, 189 B/s wr, 13 op/s 2024-01-24T03:00:28.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:27 smithi195 bash[19846]: audit 2024-01-24T03:00:26.897333+0000 mon.smithi152 (mon.0) 684 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:28.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:27 smithi195 bash[19846]: cluster 2024-01-24T03:00:27.438014+0000 mgr.smithi152.jkoscf (mgr.14182) 290 : cluster [DBG] pgmap v245: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 175 B/s wr, 2 op/s 2024-01-24T03:00:28.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:27 smithi152 bash[16344]: audit 2024-01-24T03:00:26.897333+0000 mon.smithi152 (mon.0) 684 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:28.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:27 smithi152 bash[16344]: cluster 2024-01-24T03:00:27.438014+0000 mgr.smithi152.jkoscf (mgr.14182) 290 : cluster [DBG] pgmap v245: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 175 B/s wr, 2 op/s 2024-01-24T03:00:29.337 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring fsid 676f9788-ba63-11ee-95b1-87774f69a715 2024-01-24T03:00:29.367 INFO:teuthology.orchestra.run.smithi152.stderr:Using recent ceph image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:03cebbcb5093d723ae3c0cb1ed662305909bd21ed66495ca95a0fbb33e52a87e 2024-01-24T03:00:30.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:30 smithi195 bash[19846]: audit 2024-01-24T03:00:29.396294+0000 mon.smithi152 (mon.0) 685 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:30.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:30 smithi195 bash[19846]: cluster 2024-01-24T03:00:29.439530+0000 mgr.smithi152.jkoscf (mgr.14182) 291 : cluster [DBG] pgmap v246: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s rd, 87 B/s wr, 2 op/s 2024-01-24T03:00:30.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:30 smithi152 bash[16344]: audit 2024-01-24T03:00:29.396294+0000 mon.smithi152 (mon.0) 685 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:30.830 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:30 smithi152 bash[16344]: cluster 2024-01-24T03:00:29.439530+0000 mgr.smithi152.jkoscf (mgr.14182) 291 : cluster [DBG] pgmap v246: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s rd, 87 B/s wr, 2 op/s 2024-01-24T03:00:32.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:31 smithi152 bash[16344]: audit 2024-01-24T03:00:30.859531+0000 mon.smithi152 (mon.0) 686 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:32.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:31 smithi152 bash[16344]: audit 2024-01-24T03:00:30.861205+0000 mon.smithi152 (mon.0) 687 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:00:32.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:31 smithi152 bash[16344]: audit 2024-01-24T03:00:30.862683+0000 mon.smithi152 (mon.0) 688 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:00:32.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:31 smithi152 bash[16344]: cephadm 2024-01-24T03:00:30.869743+0000 mgr.smithi152.jkoscf (mgr.14182) 292 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-01-24T03:00:32.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:31 smithi152 bash[16344]: audit 2024-01-24T03:00:31.131363+0000 mon.smithi152 (mon.0) 689 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:32.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:31 smithi152 bash[16344]: cluster 2024-01-24T03:00:31.132521+0000 mgr.smithi152.jkoscf (mgr.14182) 293 : cluster [DBG] pgmap v247: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 270 B/s rd, 0 op/s 2024-01-24T03:00:32.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:31 smithi152 bash[16344]: audit 2024-01-24T03:00:31.139448+0000 mon.smithi152 (mon.0) 690 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:00:32.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:31 smithi152 bash[16344]: audit 2024-01-24T03:00:31.150649+0000 mon.smithi152 (mon.0) 691 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:32.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:31 smithi152 bash[16344]: cephadm 2024-01-24T03:00:31.154422+0000 mgr.smithi152.jkoscf (mgr.14182) 294 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.whdqmu on smithi195 2024-01-24T03:00:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:31 smithi195 bash[19846]: audit 2024-01-24T03:00:30.859531+0000 mon.smithi152 (mon.0) 686 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:31 smithi195 bash[19846]: audit 2024-01-24T03:00:30.861205+0000 mon.smithi152 (mon.0) 687 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:00:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:31 smithi195 bash[19846]: audit 2024-01-24T03:00:30.862683+0000 mon.smithi152 (mon.0) 688 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:00:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:31 smithi195 bash[19846]: cephadm 2024-01-24T03:00:30.869743+0000 mgr.smithi152.jkoscf (mgr.14182) 292 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-01-24T03:00:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:31 smithi195 bash[19846]: audit 2024-01-24T03:00:31.131363+0000 mon.smithi152 (mon.0) 689 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:31 smithi195 bash[19846]: cluster 2024-01-24T03:00:31.132521+0000 mgr.smithi152.jkoscf (mgr.14182) 293 : cluster [DBG] pgmap v247: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 270 B/s rd, 0 op/s 2024-01-24T03:00:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:31 smithi195 bash[19846]: audit 2024-01-24T03:00:31.139448+0000 mon.smithi152 (mon.0) 690 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:00:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:31 smithi195 bash[19846]: audit 2024-01-24T03:00:31.150649+0000 mon.smithi152 (mon.0) 691 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:31 smithi195 bash[19846]: cephadm 2024-01-24T03:00:31.154422+0000 mgr.smithi152.jkoscf (mgr.14182) 294 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.whdqmu on smithi195 2024-01-24T03:00:33.158 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:32 smithi152 bash[16344]: cluster 2024-01-24T03:00:32.129358+0000 mon.smithi152 (mon.0) 692 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:00:33.158 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:32 smithi152 bash[16344]: cluster 2024-01-24T03:00:32.129423+0000 mon.smithi152 (mon.0) 693 : cluster [INF] Cluster is now healthy 2024-01-24T03:00:33.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:32 smithi195 bash[19846]: cluster 2024-01-24T03:00:32.129358+0000 mon.smithi152 (mon.0) 692 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:00:33.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:32 smithi195 bash[19846]: cluster 2024-01-24T03:00:32.129423+0000 mon.smithi152 (mon.0) 693 : cluster [INF] Cluster is now healthy 2024-01-24T03:00:34.020 INFO:teuthology.run_tasks:Running task python... 2024-01-24T03:00:34.031 INFO:tasks.python:Running python on role host.a host ubuntu@smithi152.front.sepia.ceph.com 2024-01-24T03:00:34.031 INFO:tasks.python:import boto3 import json with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') bucket.create() bucket.put_object(Key='myobject', Body='thebody') 2024-01-24T03:00:34.031 DEBUG:teuthology.orchestra.run.smithi152:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-01-24T03:00:34.330 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:34 smithi152 bash[16344]: cluster 2024-01-24T03:00:33.133428+0000 mgr.smithi152.jkoscf (mgr.14182) 295 : cluster [DBG] pgmap v248: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 541 B/s rd, 0 op/s 2024-01-24T03:00:34.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:34 smithi195 bash[19846]: cluster 2024-01-24T03:00:33.133428+0000 mgr.smithi152.jkoscf (mgr.14182) 295 : cluster [DBG] pgmap v248: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 541 B/s rd, 0 op/s 2024-01-24T03:00:35.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:35 smithi195 bash[19846]: audit 2024-01-24T03:00:34.921560+0000 mon.smithi152 (mon.0) 694 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.whdqmu"}]: dispatch 2024-01-24T03:00:35.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:35 smithi152 bash[16344]: audit 2024-01-24T03:00:34.921560+0000 mon.smithi152 (mon.0) 694 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.whdqmu"}]: dispatch 2024-01-24T03:00:36.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: cephadm 2024-01-24T03:00:34.920920+0000 mgr.smithi152.jkoscf (mgr.14182) 296 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu 2024-01-24T03:00:36.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:36.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu 2024-01-24T03:00:36.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:36.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.whdqmu ... 2024-01-24T03:00:36.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.whdqmu ... 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: cephadm 2024-01-24T03:00:34.921141+0000 mgr.smithi152.jkoscf (mgr.14182) 297 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: cephadm 2024-01-24T03:00:34.922693+0000 mgr.smithi152.jkoscf (mgr.14182) 298 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:36.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.whdqmu ... 2024-01-24T03:00:36.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:36.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:36.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:36.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:36.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:36.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: cephadm 2024-01-24T03:00:34.924647+0000 mgr.smithi152.jkoscf (mgr.14182) 299 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.myicds on smithi152 2024-01-24T03:00:36.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: cluster 2024-01-24T03:00:35.134104+0000 mgr.smithi152.jkoscf (mgr.14182) 300 : cluster [DBG] pgmap v249: 161 pgs: 161 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 175 B/s wr, 2 op/s 2024-01-24T03:00:36.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: cluster 2024-01-24T03:00:35.226908+0000 mon.smithi152 (mon.0) 695 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-01-24T03:00:36.496 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:36 smithi195 bash[19846]: audit 2024-01-24T03:00:35.227806+0000 mon.smithi152 (mon.0) 696 : audit [INF] from='client.? 172.21.15.152:0/3448032797' entity='client.rgw.foorgw.smithi152.lohnfz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-01-24T03:00:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: cephadm 2024-01-24T03:00:34.920920+0000 mgr.smithi152.jkoscf (mgr.14182) 296 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu 2024-01-24T03:00:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu 2024-01-24T03:00:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.whdqmu ... 2024-01-24T03:00:36.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.whdqmu ... 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: cephadm 2024-01-24T03:00:34.921141+0000 mgr.smithi152.jkoscf (mgr.14182) 297 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: cephadm 2024-01-24T03:00:34.922693+0000 mgr.smithi152.jkoscf (mgr.14182) 298 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:36.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu 2024-01-24T03:00:36.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.whdqmu ... 2024-01-24T03:00:36.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:36.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:36.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:36.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:36.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:36.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: cephadm 2024-01-24T03:00:34.924647+0000 mgr.smithi152.jkoscf (mgr.14182) 299 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.myicds on smithi152 2024-01-24T03:00:36.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: cluster 2024-01-24T03:00:35.134104+0000 mgr.smithi152.jkoscf (mgr.14182) 300 : cluster [DBG] pgmap v249: 161 pgs: 161 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 175 B/s wr, 2 op/s 2024-01-24T03:00:36.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: cluster 2024-01-24T03:00:35.226908+0000 mon.smithi152 (mon.0) 695 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-01-24T03:00:36.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:36 smithi152 bash[16344]: audit 2024-01-24T03:00:35.227806+0000 mon.smithi152 (mon.0) 696 : audit [INF] from='client.? 172.21.15.152:0/3448032797' entity='client.rgw.foorgw.smithi152.lohnfz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-01-24T03:00:37.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:37 smithi152 bash[16344]: audit 2024-01-24T03:00:36.233512+0000 mon.smithi152 (mon.0) 697 : audit [INF] from='client.? 172.21.15.152:0/3448032797' entity='client.rgw.foorgw.smithi152.lohnfz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-01-24T03:00:37.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:37 smithi152 bash[16344]: cluster 2024-01-24T03:00:36.234329+0000 mon.smithi152 (mon.0) 698 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-01-24T03:00:37.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:37 smithi152 bash[16344]: audit 2024-01-24T03:00:36.241419+0000 mon.smithi152 (mon.0) 699 : audit [INF] from='client.? 172.21.15.152:0/3448032797' entity='client.rgw.foorgw.smithi152.lohnfz' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-24T03:00:37.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:37 smithi195 bash[19846]: audit 2024-01-24T03:00:36.233512+0000 mon.smithi152 (mon.0) 697 : audit [INF] from='client.? 172.21.15.152:0/3448032797' entity='client.rgw.foorgw.smithi152.lohnfz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-01-24T03:00:37.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:37 smithi195 bash[19846]: cluster 2024-01-24T03:00:36.234329+0000 mon.smithi152 (mon.0) 698 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-01-24T03:00:37.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:37 smithi195 bash[19846]: audit 2024-01-24T03:00:36.241419+0000 mon.smithi152 (mon.0) 699 : audit [INF] from='client.? 172.21.15.152:0/3448032797' entity='client.rgw.foorgw.smithi152.lohnfz' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-24T03:00:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:38 smithi152 bash[16344]: cluster 2024-01-24T03:00:37.135023+0000 mgr.smithi152.jkoscf (mgr.14182) 301 : cluster [DBG] pgmap v252: 193 pgs: 11 creating+peering, 15 unknown, 167 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.9 KiB/s rd, 266 B/s wr, 4 op/s 2024-01-24T03:00:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:38 smithi152 bash[16344]: audit 2024-01-24T03:00:37.245215+0000 mon.smithi152 (mon.0) 700 : audit [INF] from='client.? 172.21.15.152:0/3448032797' entity='client.rgw.foorgw.smithi152.lohnfz' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-24T03:00:38.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:38 smithi152 bash[16344]: cluster 2024-01-24T03:00:37.245349+0000 mon.smithi152 (mon.0) 701 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-01-24T03:00:38.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:38 smithi195 bash[19846]: cluster 2024-01-24T03:00:37.135023+0000 mgr.smithi152.jkoscf (mgr.14182) 301 : cluster [DBG] pgmap v252: 193 pgs: 11 creating+peering, 15 unknown, 167 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.9 KiB/s rd, 266 B/s wr, 4 op/s 2024-01-24T03:00:38.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:38 smithi195 bash[19846]: audit 2024-01-24T03:00:37.245215+0000 mon.smithi152 (mon.0) 700 : audit [INF] from='client.? 172.21.15.152:0/3448032797' entity='client.rgw.foorgw.smithi152.lohnfz' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-24T03:00:38.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:38 smithi195 bash[19846]: cluster 2024-01-24T03:00:37.245349+0000 mon.smithi152 (mon.0) 701 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-01-24T03:00:39.352 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-01-24T03:00:39.362 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi152.front.sepia.ceph.com 2024-01-24T03:00:39.362 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2024-01-24T03:00:39.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:39 smithi152 bash[16344]: cluster 2024-01-24T03:00:38.267793+0000 mon.smithi152 (mon.0) 702 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-01-24T03:00:39.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:39 smithi152 bash[16344]: audit 2024-01-24T03:00:38.271551+0000 mon.smithi152 (mon.0) 703 : audit [INF] from='client.? 172.21.15.152:0/814544273' entity='client.rgw.foorgw.smithi152.lohnfz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-01-24T03:00:39.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:39 smithi152 bash[16344]: audit 2024-01-24T03:00:38.779029+0000 mon.smithi152 (mon.0) 704 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.myicds"}]: dispatch 2024-01-24T03:00:39.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:39 smithi195 bash[19846]: cluster 2024-01-24T03:00:38.267793+0000 mon.smithi152 (mon.0) 702 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-01-24T03:00:39.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:39 smithi195 bash[19846]: audit 2024-01-24T03:00:38.271551+0000 mon.smithi152 (mon.0) 703 : audit [INF] from='client.? 172.21.15.152:0/814544273' entity='client.rgw.foorgw.smithi152.lohnfz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-01-24T03:00:39.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:39 smithi195 bash[19846]: audit 2024-01-24T03:00:38.779029+0000 mon.smithi152 (mon.0) 704 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.myicds"}]: dispatch 2024-01-24T03:00:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: cephadm 2024-01-24T03:00:38.778015+0000 mgr.smithi152.jkoscf (mgr.14182) 302 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds 2024-01-24T03:00:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds 2024-01-24T03:00:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.myicds ... 2024-01-24T03:00:40.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:40.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:40.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:40.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:40.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:40.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:00:40.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:00:40.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:00:40.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:00:40.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:00:40.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds 2024-01-24T03:00:40.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:40.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds 2024-01-24T03:00:40.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:40.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.myicds ... 2024-01-24T03:00:40.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:40.493 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: cephadm 2024-01-24T03:00:38.778349+0000 mgr.smithi152.jkoscf (mgr.14182) 303 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: cephadm 2024-01-24T03:00:38.780641+0000 mgr.smithi152.jkoscf (mgr.14182) 304 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.myicds ... 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:40.494 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:40.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:40.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:40.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: cephadm 2024-01-24T03:00:38.782681+0000 mgr.smithi152.jkoscf (mgr.14182) 305 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:00:40.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: cephadm 2024-01-24T03:00:38.784238+0000 mgr.smithi152.jkoscf (mgr.14182) 306 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:00:40.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: cluster 2024-01-24T03:00:38.786466+0000 mgr.smithi152.jkoscf (mgr.14182) 307 : cluster [DBG] pgmap v255: 225 pgs: 21 creating+peering, 26 unknown, 178 active+clean; 6.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 280 B/s wr, 3 op/s 2024-01-24T03:00:40.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: cluster 2024-01-24T03:00:39.261195+0000 mon.smithi152 (mon.0) 705 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:00:40.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: audit 2024-01-24T03:00:39.276381+0000 mon.smithi152 (mon.0) 706 : audit [INF] from='client.? 172.21.15.152:0/814544273' entity='client.rgw.foorgw.smithi152.lohnfz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-01-24T03:00:40.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: cluster 2024-01-24T03:00:39.276716+0000 mon.smithi152 (mon.0) 707 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-01-24T03:00:40.495 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:40 smithi195 bash[19846]: audit 2024-01-24T03:00:39.283515+0000 mon.smithi152 (mon.0) 708 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: cephadm 2024-01-24T03:00:38.778015+0000 mgr.smithi152.jkoscf (mgr.14182) 302 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds 2024-01-24T03:00:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds 2024-01-24T03:00:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.myicds ... 2024-01-24T03:00:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:40.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.myicds ... 2024-01-24T03:00:40.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: cephadm 2024-01-24T03:00:38.778349+0000 mgr.smithi152.jkoscf (mgr.14182) 303 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: cephadm 2024-01-24T03:00:38.780641+0000 mgr.smithi152.jkoscf (mgr.14182) 304 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.myicds ... 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:00:40.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:00:40.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:00:40.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:00:40.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: cephadm 2024-01-24T03:00:38.782681+0000 mgr.smithi152.jkoscf (mgr.14182) 305 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:00:40.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: cephadm 2024-01-24T03:00:38.784238+0000 mgr.smithi152.jkoscf (mgr.14182) 306 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:00:40.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: cluster 2024-01-24T03:00:38.786466+0000 mgr.smithi152.jkoscf (mgr.14182) 307 : cluster [DBG] pgmap v255: 225 pgs: 21 creating+peering, 26 unknown, 178 active+clean; 6.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 280 B/s wr, 3 op/s 2024-01-24T03:00:40.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: cluster 2024-01-24T03:00:39.261195+0000 mon.smithi152 (mon.0) 705 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:00:40.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: audit 2024-01-24T03:00:39.276381+0000 mon.smithi152 (mon.0) 706 : audit [INF] from='client.? 172.21.15.152:0/814544273' entity='client.rgw.foorgw.smithi152.lohnfz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-01-24T03:00:40.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: cluster 2024-01-24T03:00:39.276716+0000 mon.smithi152 (mon.0) 707 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-01-24T03:00:40.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:40 smithi152 bash[16344]: audit 2024-01-24T03:00:39.283515+0000 mon.smithi152 (mon.0) 708 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:41.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:41 smithi152 bash[16344]: cluster 2024-01-24T03:00:40.285505+0000 mon.smithi152 (mon.0) 709 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-01-24T03:00:41.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:41 smithi195 bash[19846]: cluster 2024-01-24T03:00:40.285505+0000 mon.smithi152 (mon.0) 709 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-01-24T03:00:42.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:42 smithi152 bash[16344]: cluster 2024-01-24T03:00:40.788081+0000 mgr.smithi152.jkoscf (mgr.14182) 308 : cluster [DBG] pgmap v258: 225 pgs: 10 creating+peering, 3 unknown, 212 active+clean; 6.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 1.6 KiB/s wr, 7 op/s 2024-01-24T03:00:42.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:42 smithi152 bash[16344]: audit 2024-01-24T03:00:41.928497+0000 mon.smithi152 (mon.0) 710 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:42.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:42 smithi195 bash[19846]: cluster 2024-01-24T03:00:40.788081+0000 mgr.smithi152.jkoscf (mgr.14182) 308 : cluster [DBG] pgmap v258: 225 pgs: 10 creating+peering, 3 unknown, 212 active+clean; 6.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 1.6 KiB/s wr, 7 op/s 2024-01-24T03:00:42.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:42 smithi195 bash[19846]: audit 2024-01-24T03:00:41.928497+0000 mon.smithi152 (mon.0) 710 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:43.024 INFO:teuthology.orchestra.run.smithi152.stdout:{ 2024-01-24T03:00:43.024 INFO:teuthology.orchestra.run.smithi152.stdout: "bind": "/foouser", 2024-01-24T03:00:43.024 INFO:teuthology.orchestra.run.smithi152.stdout: "path": "/", 2024-01-24T03:00:43.025 INFO:teuthology.orchestra.run.smithi152.stdout: "cluster": "foo", 2024-01-24T03:00:43.025 INFO:teuthology.orchestra.run.smithi152.stdout: "mode": "RW", 2024-01-24T03:00:43.025 INFO:teuthology.orchestra.run.smithi152.stdout: "squash": "none" 2024-01-24T03:00:43.025 INFO:teuthology.orchestra.run.smithi152.stdout:} 2024-01-24T03:00:43.672 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-01-24T03:00:43.682 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-01-24T03:00:43.683 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:00:44.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:44 smithi152 bash[16344]: cluster 2024-01-24T03:00:42.789357+0000 mgr.smithi152.jkoscf (mgr.14182) 309 : cluster [DBG] pgmap v259: 225 pgs: 10 creating+peering, 215 active+clean; 6.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 1.3 KiB/s wr, 7 op/s 2024-01-24T03:00:44.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:44 smithi152 bash[16344]: audit 2024-01-24T03:00:42.827687+0000 mgr.smithi152.jkoscf (mgr.14182) 310 : audit [DBG] from='client.14598 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T03:00:44.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:44 smithi195 bash[19846]: cluster 2024-01-24T03:00:42.789357+0000 mgr.smithi152.jkoscf (mgr.14182) 309 : cluster [DBG] pgmap v259: 225 pgs: 10 creating+peering, 215 active+clean; 6.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 1.3 KiB/s wr, 7 op/s 2024-01-24T03:00:44.810 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:44 smithi195 bash[19846]: audit 2024-01-24T03:00:42.827687+0000 mgr.smithi152.jkoscf (mgr.14182) 310 : audit [DBG] from='client.14598 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-01-24T03:00:46.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:46 smithi152 bash[16344]: cluster 2024-01-24T03:00:44.791539+0000 mgr.smithi152.jkoscf (mgr.14182) 311 : cluster [DBG] pgmap v260: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.0 KiB/s rd, 1.5 KiB/s wr, 17 op/s 2024-01-24T03:00:46.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:46 smithi195 bash[19846]: cluster 2024-01-24T03:00:44.791539+0000 mgr.smithi152.jkoscf (mgr.14182) 311 : cluster [DBG] pgmap v260: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.0 KiB/s rd, 1.5 KiB/s wr, 17 op/s 2024-01-24T03:00:47.105 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:00:47.106 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:00:30.847203Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:00:29.384937Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:00:30.847709Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:00:29.385293Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:00:29.385474Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:00:30.849447Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:00:29.385643Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:00:29.385968Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:00:29.385806Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:00:29.386727Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:00:47.737 INFO:tasks.cephadm:nfs.foo has 1/1 2024-01-24T03:00:47.737 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-01-24T03:00:47.747 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-01-24T03:00:47.747 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:00:48.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:47 smithi152 bash[16344]: cluster 2024-01-24T03:00:46.792953+0000 mgr.smithi152.jkoscf (mgr.14182) 312 : cluster [DBG] pgmap v261: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 1.1 KiB/s wr, 20 op/s 2024-01-24T03:00:48.080 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:47 smithi152 bash[16344]: audit 2024-01-24T03:00:46.944236+0000 mon.smithi152 (mon.0) 711 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:48.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:47 smithi152 bash[16344]: audit 2024-01-24T03:00:47.092974+0000 mgr.smithi152.jkoscf (mgr.14182) 313 : audit [DBG] from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:00:48.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:47 smithi195 bash[19846]: cluster 2024-01-24T03:00:46.792953+0000 mgr.smithi152.jkoscf (mgr.14182) 312 : cluster [DBG] pgmap v261: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 1.1 KiB/s wr, 20 op/s 2024-01-24T03:00:48.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:47 smithi195 bash[19846]: audit 2024-01-24T03:00:46.944236+0000 mon.smithi152 (mon.0) 711 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:48.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:47 smithi195 bash[19846]: audit 2024-01-24T03:00:47.092974+0000 mgr.smithi152.jkoscf (mgr.14182) 313 : audit [DBG] from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:00:50.479 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:50 smithi152 bash[16344]: cluster 2024-01-24T03:00:48.794603+0000 mgr.smithi152.jkoscf (mgr.14182) 314 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.9 KiB/s rd, 967 B/s wr, 17 op/s 2024-01-24T03:00:50.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:50 smithi195 bash[19846]: cluster 2024-01-24T03:00:48.794603+0000 mgr.smithi152.jkoscf (mgr.14182) 314 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.9 KiB/s rd, 967 B/s wr, 17 op/s 2024-01-24T03:00:50.932 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:00:50.932 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:00:30.847203Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:00:29.384937Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:00:30.847709Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:00:29.385293Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:00:29.385474Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:00:30.849447Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:00:29.385643Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:00:29.385968Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:00:29.385806Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:00:29.386727Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:00:51.580 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:00:52.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:52 smithi195 bash[19846]: cluster 2024-01-24T03:00:50.796368+0000 mgr.smithi152.jkoscf (mgr.14182) 315 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.9 KiB/s rd, 681 B/s wr, 14 op/s 2024-01-24T03:00:52.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:52 smithi195 bash[19846]: audit 2024-01-24T03:00:50.925281+0000 mgr.smithi152.jkoscf (mgr.14182) 316 : audit [DBG] from='client.14626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:00:52.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:52 smithi152 bash[16344]: cluster 2024-01-24T03:00:50.796368+0000 mgr.smithi152.jkoscf (mgr.14182) 315 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.9 KiB/s rd, 681 B/s wr, 14 op/s 2024-01-24T03:00:52.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:52 smithi152 bash[16344]: audit 2024-01-24T03:00:50.925281+0000 mgr.smithi152.jkoscf (mgr.14182) 316 : audit [DBG] from='client.14626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:00:52.581 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:00:54.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:54 smithi195 bash[19846]: cluster 2024-01-24T03:00:52.797382+0000 mgr.smithi152.jkoscf (mgr.14182) 317 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.3 KiB/s rd, 341 B/s wr, 11 op/s 2024-01-24T03:00:54.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:54 smithi152 bash[16344]: cluster 2024-01-24T03:00:52.797382+0000 mgr.smithi152.jkoscf (mgr.14182) 317 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.3 KiB/s rd, 341 B/s wr, 11 op/s 2024-01-24T03:00:55.547 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:55 smithi152 bash[16344]: audit 2024-01-24T03:00:54.274619+0000 mon.smithi152 (mon.0) 712 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:55 smithi195 bash[19846]: audit 2024-01-24T03:00:54.274619+0000 mon.smithi152 (mon.0) 712 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:00:55.896 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:00:55.896 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:00:30.847203Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:00:29.384937Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:00:30.847709Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:00:29.385293Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:00:29.385474Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:00:30.849447Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:00:29.385643Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:00:29.385968Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:00:29.385806Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:00:29.386727Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:00:56.547 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:56 smithi152 bash[16344]: cluster 2024-01-24T03:00:54.799075+0000 mgr.smithi152.jkoscf (mgr.14182) 318 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.3 KiB/s rd, 255 B/s wr, 10 op/s 2024-01-24T03:00:56.548 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:00:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:56 smithi195 bash[19846]: cluster 2024-01-24T03:00:54.799075+0000 mgr.smithi152.jkoscf (mgr.14182) 318 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.3 KiB/s rd, 255 B/s wr, 10 op/s 2024-01-24T03:00:57.549 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:00:57.562 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:57 smithi152 bash[16344]: audit 2024-01-24T03:00:55.884685+0000 mgr.smithi152.jkoscf (mgr.14182) 319 : audit [DBG] from='client.14630 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:00:57.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:57 smithi195 bash[19846]: audit 2024-01-24T03:00:55.884685+0000 mgr.smithi152.jkoscf (mgr.14182) 319 : audit [DBG] from='client.14630 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:00:58.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:00:58 smithi152 bash[16344]: cluster 2024-01-24T03:00:56.800835+0000 mgr.smithi152.jkoscf (mgr.14182) 320 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 0 B/s wr, 4 op/s 2024-01-24T03:00:58.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:00:58 smithi195 bash[19846]: cluster 2024-01-24T03:00:56.800835+0000 mgr.smithi152.jkoscf (mgr.14182) 320 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 0 B/s wr, 4 op/s 2024-01-24T03:01:00.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:00 smithi195 bash[19846]: cluster 2024-01-24T03:00:58.802710+0000 mgr.smithi152.jkoscf (mgr.14182) 321 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:00.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:00 smithi152 bash[16344]: cluster 2024-01-24T03:00:58.802710+0000 mgr.smithi152.jkoscf (mgr.14182) 321 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:00.673 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:01:00.673 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:00:30.847203Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:00:29.384937Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:00:30.847709Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:00:29.385293Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:00:29.385474Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:00:30.849447Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:00:29.385643Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:00:29.385968Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:00:29.385806Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:00:29.386727Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:01:01.292 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:01:01.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:01 smithi152 bash[16344]: audit 2024-01-24T03:01:00.660681+0000 mgr.smithi152.jkoscf (mgr.14182) 322 : audit [DBG] from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:01.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:01 smithi195 bash[19846]: audit 2024-01-24T03:01:00.660681+0000 mgr.smithi152.jkoscf (mgr.14182) 322 : audit [DBG] from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:02.294 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:01:02.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:02 smithi152 bash[16344]: cluster 2024-01-24T03:01:00.804189+0000 mgr.smithi152.jkoscf (mgr.14182) 323 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:02.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:02 smithi195 bash[19846]: cluster 2024-01-24T03:01:00.804189+0000 mgr.smithi152.jkoscf (mgr.14182) 323 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:04.580 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:04 smithi152 bash[16344]: cluster 2024-01-24T03:01:02.805504+0000 mgr.smithi152.jkoscf (mgr.14182) 324 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:04.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:04 smithi195 bash[19846]: cluster 2024-01-24T03:01:02.805504+0000 mgr.smithi152.jkoscf (mgr.14182) 324 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:05.535 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:01:05.536 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:00:30.847203Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:00:29.384937Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:00:30.847709Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:00:29.385293Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:00:29.385474Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:00:30.849447Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:00:29.385643Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:00:29.385968Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:00:29.385806Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:00:29.386727Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:01:06.152 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:01:06.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:06 smithi152 bash[16344]: cluster 2024-01-24T03:01:04.807264+0000 mgr.smithi152.jkoscf (mgr.14182) 325 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:06.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:06 smithi152 bash[16344]: audit 2024-01-24T03:01:05.524075+0000 mgr.smithi152.jkoscf (mgr.14182) 326 : audit [DBG] from='client.14638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:06.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:06 smithi195 bash[19846]: cluster 2024-01-24T03:01:04.807264+0000 mgr.smithi152.jkoscf (mgr.14182) 325 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:06.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:06 smithi195 bash[19846]: audit 2024-01-24T03:01:05.524075+0000 mgr.smithi152.jkoscf (mgr.14182) 326 : audit [DBG] from='client.14638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:07.152 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:01:08.497 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:08 smithi152 bash[16344]: cluster 2024-01-24T03:01:06.809026+0000 mgr.smithi152.jkoscf (mgr.14182) 327 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-01-24T03:01:08.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:08 smithi195 bash[19846]: cluster 2024-01-24T03:01:06.809026+0000 mgr.smithi152.jkoscf (mgr.14182) 327 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-01-24T03:01:10.332 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:01:10.333 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:00:30.847203Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:00:29.384937Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:00:30.847709Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:00:29.385293Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:00:29.385474Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:00:30.849447Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:00:29.385643Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:00:29.385968Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:00:29.385806Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:00:29.386727Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:01:10.490 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:10 smithi195 bash[19846]: cluster 2024-01-24T03:01:08.810541+0000 mgr.smithi152.jkoscf (mgr.14182) 328 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-24T03:01:10.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:10 smithi152 bash[16344]: cluster 2024-01-24T03:01:08.810541+0000 mgr.smithi152.jkoscf (mgr.14182) 328 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-24T03:01:10.903 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:01:11.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:11 smithi195 bash[19846]: audit 2024-01-24T03:01:10.318631+0000 mgr.smithi152.jkoscf (mgr.14182) 329 : audit [DBG] from='client.14642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:11.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:11 smithi152 bash[16344]: audit 2024-01-24T03:01:10.318631+0000 mgr.smithi152.jkoscf (mgr.14182) 329 : audit [DBG] from='client.14642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:11.904 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:01:12.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:12 smithi195 bash[19846]: cluster 2024-01-24T03:01:10.812242+0000 mgr.smithi152.jkoscf (mgr.14182) 330 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-24T03:01:12.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:12 smithi152 bash[16344]: cluster 2024-01-24T03:01:10.812242+0000 mgr.smithi152.jkoscf (mgr.14182) 330 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-24T03:01:14.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:14 smithi195 bash[19846]: cluster 2024-01-24T03:01:12.813698+0000 mgr.smithi152.jkoscf (mgr.14182) 331 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-24T03:01:14.767 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:14 smithi152 bash[16344]: cluster 2024-01-24T03:01:12.813698+0000 mgr.smithi152.jkoscf (mgr.14182) 331 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-24T03:01:15.219 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:01:15.219 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:00:30.847203Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:00:29.384937Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:00:30.847709Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:00:29.385293Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:00:29.385474Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:00:30.849447Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:00:29.385643Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:00:29.385968Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:00:29.385806Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:00:29.386727Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:01:15.864 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:01:16.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:16 smithi195 bash[19846]: cluster 2024-01-24T03:01:14.814957+0000 mgr.smithi152.jkoscf (mgr.14182) 332 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-24T03:01:16.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:16 smithi195 bash[19846]: audit 2024-01-24T03:01:15.204634+0000 mgr.smithi152.jkoscf (mgr.14182) 333 : audit [DBG] from='client.14646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:16.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:16 smithi152 bash[16344]: cluster 2024-01-24T03:01:14.814957+0000 mgr.smithi152.jkoscf (mgr.14182) 332 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-24T03:01:16.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:16 smithi152 bash[16344]: audit 2024-01-24T03:01:15.204634+0000 mgr.smithi152.jkoscf (mgr.14182) 333 : audit [DBG] from='client.14646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:16.865 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:01:18.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:18 smithi152 bash[16344]: cluster 2024-01-24T03:01:16.816714+0000 mgr.smithi152.jkoscf (mgr.14182) 334 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-01-24T03:01:18.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:18 smithi195 bash[19846]: cluster 2024-01-24T03:01:16.816714+0000 mgr.smithi152.jkoscf (mgr.14182) 334 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-01-24T03:01:20.010 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:01:20.010 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:00:30.847203Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:00:29.384937Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:00:30.847709Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:00:29.385293Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:00:29.385474Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:00:30.849447Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:00:29.385643Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:00:29.385968Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:00:29.385806Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:00:29.386727Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:01:20.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:20 smithi195 bash[19846]: cluster 2024-01-24T03:01:18.818023+0000 mgr.smithi152.jkoscf (mgr.14182) 335 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:20.611 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:01:20.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:20 smithi152 bash[16344]: cluster 2024-01-24T03:01:18.818023+0000 mgr.smithi152.jkoscf (mgr.14182) 335 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:21.612 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:01:21.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:21 smithi195 bash[19846]: audit 2024-01-24T03:01:19.995285+0000 mgr.smithi152.jkoscf (mgr.14182) 336 : audit [DBG] from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:21.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:21 smithi152 bash[16344]: audit 2024-01-24T03:01:19.995285+0000 mgr.smithi152.jkoscf (mgr.14182) 336 : audit [DBG] from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:22.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:22 smithi195 bash[19846]: cluster 2024-01-24T03:01:20.819770+0000 mgr.smithi152.jkoscf (mgr.14182) 337 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:22.804 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:22 smithi152 bash[16344]: cluster 2024-01-24T03:01:20.819770+0000 mgr.smithi152.jkoscf (mgr.14182) 337 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:24.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:24 smithi195 bash[19846]: cluster 2024-01-24T03:01:22.821118+0000 mgr.smithi152.jkoscf (mgr.14182) 338 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:24.816 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:01:24.817 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:00:30.847203Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:00:29.384937Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:00:30.847709Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:00:29.385293Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:00:29.385474Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:00:30.849447Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:00:29.385643Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:00:29.385968Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:00:29.385806Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:00:29.386727Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:01:24.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:24 smithi152 bash[16344]: cluster 2024-01-24T03:01:22.821118+0000 mgr.smithi152.jkoscf (mgr.14182) 338 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:25.457 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:01:26.459 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:01:26.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:26 smithi195 bash[19846]: audit 2024-01-24T03:01:24.801899+0000 mgr.smithi152.jkoscf (mgr.14182) 339 : audit [DBG] from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:26.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:26 smithi195 bash[19846]: cluster 2024-01-24T03:01:24.822842+0000 mgr.smithi152.jkoscf (mgr.14182) 340 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:26.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:26 smithi152 bash[16344]: audit 2024-01-24T03:01:24.801899+0000 mgr.smithi152.jkoscf (mgr.14182) 339 : audit [DBG] from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:26.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:26 smithi152 bash[16344]: cluster 2024-01-24T03:01:24.822842+0000 mgr.smithi152.jkoscf (mgr.14182) 340 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:28.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:28 smithi195 bash[19846]: cluster 2024-01-24T03:01:26.824587+0000 mgr.smithi152.jkoscf (mgr.14182) 341 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:01:28.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:28 smithi152 bash[16344]: cluster 2024-01-24T03:01:26.824587+0000 mgr.smithi152.jkoscf (mgr.14182) 341 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:01:29.679 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:01:29.679 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:00:30.847203Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:00:29.384937Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:00:30.847709Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:00:29.385293Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:00:29.385474Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:00:30.849447Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:00:29.385643Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:00:29.385968Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:00:29.385806Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:00:29.386727Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:01:30.265 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:01:30.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:30 smithi195 bash[19846]: cluster 2024-01-24T03:01:28.826114+0000 mgr.smithi152.jkoscf (mgr.14182) 342 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:30.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:30 smithi195 bash[19846]: audit 2024-01-24T03:01:29.667449+0000 mgr.smithi152.jkoscf (mgr.14182) 343 : audit [DBG] from='client.14658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:30.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:30 smithi152 bash[16344]: cluster 2024-01-24T03:01:28.826114+0000 mgr.smithi152.jkoscf (mgr.14182) 342 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:30.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:30 smithi152 bash[16344]: audit 2024-01-24T03:01:29.667449+0000 mgr.smithi152.jkoscf (mgr.14182) 343 : audit [DBG] from='client.14658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:31.266 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:01:32.657 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:32 smithi152 bash[16344]: cluster 2024-01-24T03:01:30.827824+0000 mgr.smithi152.jkoscf (mgr.14182) 344 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:32.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:32 smithi195 bash[19846]: cluster 2024-01-24T03:01:30.827824+0000 mgr.smithi152.jkoscf (mgr.14182) 344 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:34.393 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:01:34.394 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:00:30.847203Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:00:29.384937Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:00:30.847709Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:00:29.385293Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:00:29.385474Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:00:30.849447Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:00:29.385643Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:00:29.385968Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:00:29.385806Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:00:29.386727Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:01:34.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:34 smithi195 bash[19846]: cluster 2024-01-24T03:01:32.829180+0000 mgr.smithi152.jkoscf (mgr.14182) 345 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:34.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:34 smithi152 bash[16344]: cluster 2024-01-24T03:01:32.829180+0000 mgr.smithi152.jkoscf (mgr.14182) 345 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:35.053 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:01:35.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:35 smithi195 bash[19846]: audit 2024-01-24T03:01:34.383124+0000 mgr.smithi152.jkoscf (mgr.14182) 346 : audit [DBG] from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:35.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:35 smithi152 bash[16344]: audit 2024-01-24T03:01:34.383124+0000 mgr.smithi152.jkoscf (mgr.14182) 346 : audit [DBG] from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:36.054 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:01:36.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:36 smithi195 bash[19846]: cluster 2024-01-24T03:01:34.830982+0000 mgr.smithi152.jkoscf (mgr.14182) 347 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:36.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:36 smithi152 bash[16344]: cluster 2024-01-24T03:01:34.830982+0000 mgr.smithi152.jkoscf (mgr.14182) 347 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:38.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:38 smithi195 bash[19846]: cluster 2024-01-24T03:01:36.832774+0000 mgr.smithi152.jkoscf (mgr.14182) 348 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:01:38.815 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:38 smithi152 bash[16344]: cluster 2024-01-24T03:01:36.832774+0000 mgr.smithi152.jkoscf (mgr.14182) 348 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:01:39.240 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:01:39.240 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:00:30.847203Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:00:29.384937Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:00:30.847709Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:00:29.385293Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:00:29.385474Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:00:30.849447Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:00:29.385643Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:00:29.385968Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:00:29.385806Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:00:29.386727Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:01:39.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:39 smithi152 bash[16344]: audit 2024-01-24T03:01:38.787934+0000 mon.smithi152 (mon.0) 713 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:01:39.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:39 smithi152 bash[16344]: audit 2024-01-24T03:01:39.092726+0000 mon.smithi152 (mon.0) 714 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.12", "id": [4, 0]}]: dispatch 2024-01-24T03:01:39.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:39 smithi152 bash[16344]: audit 2024-01-24T03:01:39.093134+0000 mon.smithi152 (mon.0) 715 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.d", "id": [5, 3]}]: dispatch 2024-01-24T03:01:39.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:39 smithi195 bash[19846]: audit 2024-01-24T03:01:38.787934+0000 mon.smithi152 (mon.0) 713 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:01:39.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:39 smithi195 bash[19846]: audit 2024-01-24T03:01:39.092726+0000 mon.smithi152 (mon.0) 714 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.12", "id": [4, 0]}]: dispatch 2024-01-24T03:01:39.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:39 smithi195 bash[19846]: audit 2024-01-24T03:01:39.093134+0000 mon.smithi152 (mon.0) 715 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.d", "id": [5, 3]}]: dispatch 2024-01-24T03:01:39.867 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:01:40.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:40 smithi195 bash[19846]: cluster 2024-01-24T03:01:38.834086+0000 mgr.smithi152.jkoscf (mgr.14182) 349 : cluster [DBG] pgmap v287: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:40.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:40 smithi195 bash[19846]: audit 2024-01-24T03:01:39.225414+0000 mgr.smithi152.jkoscf (mgr.14182) 350 : audit [DBG] from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:40.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:40 smithi195 bash[19846]: audit 2024-01-24T03:01:39.461200+0000 mon.smithi152 (mon.0) 716 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.12", "id": [4, 0]}]': finished 2024-01-24T03:01:40.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:40 smithi195 bash[19846]: audit 2024-01-24T03:01:39.461445+0000 mon.smithi152 (mon.0) 717 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.d", "id": [5, 3]}]': finished 2024-01-24T03:01:40.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:40 smithi195 bash[19846]: cluster 2024-01-24T03:01:39.461610+0000 mon.smithi152 (mon.0) 718 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-01-24T03:01:40.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:40 smithi152 bash[16344]: cluster 2024-01-24T03:01:38.834086+0000 mgr.smithi152.jkoscf (mgr.14182) 349 : cluster [DBG] pgmap v287: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:01:40.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:40 smithi152 bash[16344]: audit 2024-01-24T03:01:39.225414+0000 mgr.smithi152.jkoscf (mgr.14182) 350 : audit [DBG] from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:40.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:40 smithi152 bash[16344]: audit 2024-01-24T03:01:39.461200+0000 mon.smithi152 (mon.0) 716 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.12", "id": [4, 0]}]': finished 2024-01-24T03:01:40.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:40 smithi152 bash[16344]: audit 2024-01-24T03:01:39.461445+0000 mon.smithi152 (mon.0) 717 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.d", "id": [5, 3]}]': finished 2024-01-24T03:01:40.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:40 smithi152 bash[16344]: cluster 2024-01-24T03:01:39.461610+0000 mon.smithi152 (mon.0) 718 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-01-24T03:01:40.868 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:01:41.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:41 smithi195 bash[19846]: cluster 2024-01-24T03:01:40.471278+0000 mon.smithi152 (mon.0) 719 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-01-24T03:01:41.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:41 smithi152 bash[16344]: cluster 2024-01-24T03:01:40.471278+0000 mon.smithi152 (mon.0) 719 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-01-24T03:01:42.500 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:42 smithi152 bash[16344]: cluster 2024-01-24T03:01:40.835667+0000 mgr.smithi152.jkoscf (mgr.14182) 351 : cluster [DBG] pgmap v290: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-24T03:01:42.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:42 smithi195 bash[19846]: cluster 2024-01-24T03:01:40.835667+0000 mgr.smithi152.jkoscf (mgr.14182) 351 : cluster [DBG] pgmap v290: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-24T03:01:44.316 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:01:44.316 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:00:30.847203Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:00:29.384937Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:00:30.847709Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:00:29.385293Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:00:29.385474Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:00:30.849447Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:00:29.385643Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:00:29.385968Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:00:29.385806Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:00:29.386727Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:01:44.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:44 smithi195 bash[19846]: cluster 2024-01-24T03:01:42.837165+0000 mgr.smithi152.jkoscf (mgr.14182) 352 : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-24T03:01:44.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:44 smithi152 bash[16344]: cluster 2024-01-24T03:01:42.837165+0000 mgr.smithi152.jkoscf (mgr.14182) 352 : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-24T03:01:44.973 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:01:45.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:45 smithi152 bash[16344]: audit 2024-01-24T03:01:44.303915+0000 mgr.smithi152.jkoscf (mgr.14182) 353 : audit [DBG] from='client.14670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:45.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:45 smithi152 bash[16344]: audit 2024-01-24T03:01:44.726616+0000 mon.smithi152 (mon.0) 720 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:01:45.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:45 smithi152 bash[16344]: audit 2024-01-24T03:01:45.202446+0000 mon.smithi152 (mon.0) 721 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:01:45.975 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:01:45.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:45 smithi195 bash[19846]: audit 2024-01-24T03:01:44.303915+0000 mgr.smithi152.jkoscf (mgr.14182) 353 : audit [DBG] from='client.14670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:45.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:45 smithi195 bash[19846]: audit 2024-01-24T03:01:44.726616+0000 mon.smithi152 (mon.0) 720 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:01:45.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:45 smithi195 bash[19846]: audit 2024-01-24T03:01:45.202446+0000 mon.smithi152 (mon.0) 721 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:01:46.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:46 smithi152 bash[16344]: cluster 2024-01-24T03:01:44.839066+0000 mgr.smithi152.jkoscf (mgr.14182) 354 : cluster [DBG] pgmap v292: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T03:01:46.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:46 smithi152 bash[16344]: audit 2024-01-24T03:01:45.506120+0000 mon.smithi152 (mon.0) 722 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:01:46.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:46 smithi152 bash[16344]: audit 2024-01-24T03:01:45.507871+0000 mon.smithi152 (mon.0) 723 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:01:46.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:46 smithi152 bash[16344]: audit 2024-01-24T03:01:45.515725+0000 mon.smithi152 (mon.0) 724 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:01:46.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:46 smithi152 bash[16344]: cluster 2024-01-24T03:01:45.516595+0000 mgr.smithi152.jkoscf (mgr.14182) 355 : cluster [DBG] pgmap v293: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T03:01:46.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:46 smithi152 bash[16344]: audit 2024-01-24T03:01:45.524034+0000 mon.smithi152 (mon.0) 725 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:01:46.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:46 smithi152 bash[16344]: audit 2024-01-24T03:01:45.539415+0000 mon.smithi152 (mon.0) 726 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:01:46.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:46 smithi152 bash[16344]: cephadm 2024-01-24T03:01:45.542765+0000 mgr.smithi152.jkoscf (mgr.14182) 356 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.bquiud on smithi195 2024-01-24T03:01:46.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:46 smithi152 bash[16344]: cluster 2024-01-24T03:01:45.720660+0000 mon.smithi152 (mon.0) 727 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:01:46.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:46 smithi152 bash[16344]: cluster 2024-01-24T03:01:45.720729+0000 mon.smithi152 (mon.0) 728 : cluster [INF] Cluster is now healthy 2024-01-24T03:01:46.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:46 smithi195 bash[19846]: cluster 2024-01-24T03:01:44.839066+0000 mgr.smithi152.jkoscf (mgr.14182) 354 : cluster [DBG] pgmap v292: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T03:01:46.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:46 smithi195 bash[19846]: audit 2024-01-24T03:01:45.506120+0000 mon.smithi152 (mon.0) 722 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:01:46.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:46 smithi195 bash[19846]: audit 2024-01-24T03:01:45.507871+0000 mon.smithi152 (mon.0) 723 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:01:46.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:46 smithi195 bash[19846]: audit 2024-01-24T03:01:45.515725+0000 mon.smithi152 (mon.0) 724 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:01:46.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:46 smithi195 bash[19846]: cluster 2024-01-24T03:01:45.516595+0000 mgr.smithi152.jkoscf (mgr.14182) 355 : cluster [DBG] pgmap v293: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-24T03:01:46.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:46 smithi195 bash[19846]: audit 2024-01-24T03:01:45.524034+0000 mon.smithi152 (mon.0) 725 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:01:46.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:46 smithi195 bash[19846]: audit 2024-01-24T03:01:45.539415+0000 mon.smithi152 (mon.0) 726 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:01:46.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:46 smithi195 bash[19846]: cephadm 2024-01-24T03:01:45.542765+0000 mgr.smithi152.jkoscf (mgr.14182) 356 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.bquiud on smithi195 2024-01-24T03:01:46.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:46 smithi195 bash[19846]: cluster 2024-01-24T03:01:45.720660+0000 mon.smithi152 (mon.0) 727 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:01:46.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:46 smithi195 bash[19846]: cluster 2024-01-24T03:01:45.720729+0000 mon.smithi152 (mon.0) 728 : cluster [INF] Cluster is now healthy 2024-01-24T03:01:48.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:48 smithi152 bash[16344]: cluster 2024-01-24T03:01:47.517438+0000 mgr.smithi152.jkoscf (mgr.14182) 357 : cluster [DBG] pgmap v294: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-24T03:01:48.954 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:48 smithi195 bash[19846]: cluster 2024-01-24T03:01:47.517438+0000 mgr.smithi152.jkoscf (mgr.14182) 357 : cluster [DBG] pgmap v294: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-24T03:01:49.265 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:01:49.265 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:23.433787Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.adrwdr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:34.922578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.whdqmu on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-whdqmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.whdqmu\nDeploy daemon haproxy.nfs.foo.smithi195.whdqmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.780510Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.myicds on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-myicds\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.myicds\nDeploy daemon haproxy.nfs.foo.smithi152.myicds ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:00:38.782565Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jarsai on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:01:49.939 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:49 smithi152 bash[16344]: audit 2024-01-24T03:01:49.349035+0000 mon.smithi152 (mon.0) 729 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.bquiud"}]: dispatch 2024-01-24T03:01:49.940 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:01:49.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:49 smithi195 bash[19846]: audit 2024-01-24T03:01:49.349035+0000 mon.smithi152 (mon.0) 729 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.bquiud"}]: dispatch 2024-01-24T03:01:50.941 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:01:50.955 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: audit 2024-01-24T03:01:49.249749+0000 mgr.smithi152.jkoscf (mgr.14182) 358 : audit [DBG] from='client.14674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:50.955 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: cephadm 2024-01-24T03:01:49.347704+0000 mgr.smithi152.jkoscf (mgr.14182) 359 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud 2024-01-24T03:01:50.955 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:01:50.955 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud 2024-01-24T03:01:50.955 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.955 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:01:50.955 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.955 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.bquiud ... 2024-01-24T03:01:50.955 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.956 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.bquiud ... 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: cephadm 2024-01-24T03:01:49.348297+0000 mgr.smithi152.jkoscf (mgr.14182) 360 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: cephadm 2024-01-24T03:01:49.350740+0000 mgr.smithi152.jkoscf (mgr.14182) 361 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.bquiud ... 2024-01-24T03:01:50.958 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:50.958 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:01:50.958 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:01:50.958 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:01:50.958 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:50.958 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: cephadm 2024-01-24T03:01:49.355708+0000 mgr.smithi152.jkoscf (mgr.14182) 362 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.zkpcbw on smithi152 2024-01-24T03:01:50.958 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:50 smithi152 bash[16344]: cluster 2024-01-24T03:01:49.518445+0000 mgr.smithi152.jkoscf (mgr.14182) 363 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 113 B/s rd, 0 op/s 2024-01-24T03:01:50.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: audit 2024-01-24T03:01:49.249749+0000 mgr.smithi152.jkoscf (mgr.14182) 358 : audit [DBG] from='client.14674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:50.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: cephadm 2024-01-24T03:01:49.347704+0000 mgr.smithi152.jkoscf (mgr.14182) 359 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud 2024-01-24T03:01:50.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:01:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud 2024-01-24T03:01:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:01:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.bquiud ... 2024-01-24T03:01:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:01:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:01:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:01:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:01:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:01:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.bquiud ... 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: cephadm 2024-01-24T03:01:49.348297+0000 mgr.smithi152.jkoscf (mgr.14182) 360 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: cephadm 2024-01-24T03:01:49.350740+0000 mgr.smithi152.jkoscf (mgr.14182) 361 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud 2024-01-24T03:01:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:01:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud 2024-01-24T03:01:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:01:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud 2024-01-24T03:01:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.bquiud ... 2024-01-24T03:01:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:01:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:01:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:01:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: cephadm 2024-01-24T03:01:49.355708+0000 mgr.smithi152.jkoscf (mgr.14182) 362 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.zkpcbw on smithi152 2024-01-24T03:01:50.996 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:50 smithi195 bash[19846]: cluster 2024-01-24T03:01:49.518445+0000 mgr.smithi152.jkoscf (mgr.14182) 363 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 113 B/s rd, 0 op/s 2024-01-24T03:01:52.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:52 smithi195 bash[19846]: cluster 2024-01-24T03:01:51.519895+0000 mgr.smithi152.jkoscf (mgr.14182) 364 : cluster [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2024-01-24T03:01:53.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:52 smithi152 bash[16344]: cluster 2024-01-24T03:01:51.519895+0000 mgr.smithi152.jkoscf (mgr.14182) 364 : cluster [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2024-01-24T03:01:54.313 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:01:54.313 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:01:54.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: cluster 2024-01-24T03:01:53.520516+0000 mgr.smithi152.jkoscf (mgr.14182) 365 : cluster [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2024-01-24T03:01:54.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: cephadm 2024-01-24T03:01:53.565230+0000 mgr.smithi152.jkoscf (mgr.14182) 366 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw 2024-01-24T03:01:54.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:01:54.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw 2024-01-24T03:01:54.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:01:54.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.zkpcbw ... 2024-01-24T03:01:54.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:54.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:01:54.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:01:54.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:01:54.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:54.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:01:54.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:01:54.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:01:54.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:01:54.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:01:54.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw 2024-01-24T03:01:54.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:01:54.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw 2024-01-24T03:01:54.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:01:54.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.zkpcbw ... 2024-01-24T03:01:54.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:54.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:01:54.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:01:54.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:01:54.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:54.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: cephadm 2024-01-24T03:01:53.565555+0000 mgr.smithi152.jkoscf (mgr.14182) 367 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: audit 2024-01-24T03:01:53.565975+0000 mon.smithi152 (mon.0) 730 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.zkpcbw"}]: dispatch 2024-01-24T03:01:54.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: cephadm 2024-01-24T03:01:53.566929+0000 mgr.smithi152.jkoscf (mgr.14182) 368 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw 2024-01-24T03:01:54.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:01:54.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw 2024-01-24T03:01:54.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:01:54.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.zkpcbw ... 2024-01-24T03:01:54.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:54.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:01:54.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:01:54.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:01:54.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:54.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: cephadm 2024-01-24T03:01:53.568932+0000 mgr.smithi152.jkoscf (mgr.14182) 369 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:01:54.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: cephadm 2024-01-24T03:01:53.570661+0000 mgr.smithi152.jkoscf (mgr.14182) 370 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:01:54.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:54 smithi152 bash[16344]: cluster 2024-01-24T03:01:53.571520+0000 mgr.smithi152.jkoscf (mgr.14182) 371 : cluster [DBG] pgmap v298: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 117 B/s rd, 0 op/s 2024-01-24T03:01:54.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: cluster 2024-01-24T03:01:53.520516+0000 mgr.smithi152.jkoscf (mgr.14182) 365 : cluster [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2024-01-24T03:01:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: cephadm 2024-01-24T03:01:53.565230+0000 mgr.smithi152.jkoscf (mgr.14182) 366 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw 2024-01-24T03:01:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:01:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw 2024-01-24T03:01:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:01:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.zkpcbw ... 2024-01-24T03:01:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:01:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:01:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:01:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.zkpcbw ... 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:01:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: cephadm 2024-01-24T03:01:53.565555+0000 mgr.smithi152.jkoscf (mgr.14182) 367 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: audit 2024-01-24T03:01:53.565975+0000 mon.smithi152 (mon.0) 730 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.zkpcbw"}]: dispatch 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: cephadm 2024-01-24T03:01:53.566929+0000 mgr.smithi152.jkoscf (mgr.14182) 368 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.zkpcbw ... 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:01:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:01:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:01:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: cephadm 2024-01-24T03:01:53.568932+0000 mgr.smithi152.jkoscf (mgr.14182) 369 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:01:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: cephadm 2024-01-24T03:01:53.570661+0000 mgr.smithi152.jkoscf (mgr.14182) 370 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:01:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:54 smithi195 bash[19846]: cluster 2024-01-24T03:01:53.571520+0000 mgr.smithi152.jkoscf (mgr.14182) 371 : cluster [DBG] pgmap v298: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 117 B/s rd, 0 op/s 2024-01-24T03:01:54.979 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:01:55.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:55 smithi152 bash[16344]: cluster 2024-01-24T03:01:54.238877+0000 mon.smithi152 (mon.0) 731 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:01:55.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:55 smithi152 bash[16344]: audit 2024-01-24T03:01:54.301662+0000 mgr.smithi152.jkoscf (mgr.14182) 372 : audit [DBG] from='client.14678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:55 smithi195 bash[19846]: cluster 2024-01-24T03:01:54.238877+0000 mon.smithi152 (mon.0) 731 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:01:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:55 smithi195 bash[19846]: audit 2024-01-24T03:01:54.301662+0000 mgr.smithi152.jkoscf (mgr.14182) 372 : audit [DBG] from='client.14678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:01:55.980 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:01:56.592 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:56 smithi152 bash[16344]: cluster 2024-01-24T03:01:55.573249+0000 mgr.smithi152.jkoscf (mgr.14182) 373 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:01:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:56 smithi195 bash[19846]: cluster 2024-01-24T03:01:55.573249+0000 mgr.smithi152.jkoscf (mgr.14182) 373 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:01:58.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:58 smithi152 bash[16344]: audit 2024-01-24T03:01:57.003508+0000 mon.smithi152 (mon.0) 732 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:01:58.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:01:58 smithi152 bash[16344]: cluster 2024-01-24T03:01:57.574195+0000 mgr.smithi152.jkoscf (mgr.14182) 374 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:01:58.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:58 smithi195 bash[19846]: audit 2024-01-24T03:01:57.003508+0000 mon.smithi152 (mon.0) 732 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:01:58.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:01:58 smithi195 bash[19846]: cluster 2024-01-24T03:01:57.574195+0000 mgr.smithi152.jkoscf (mgr.14182) 374 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:01:59.229 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:01:59.229 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:01:59.828 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:02:00.829 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:02:00.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:00 smithi195 bash[19846]: audit 2024-01-24T03:01:59.214445+0000 mgr.smithi152.jkoscf (mgr.14182) 375 : audit [DBG] from='client.14682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:00.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:00 smithi195 bash[19846]: cluster 2024-01-24T03:01:59.575783+0000 mgr.smithi152.jkoscf (mgr.14182) 376 : cluster [DBG] pgmap v301: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:02:01.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:00 smithi152 bash[16344]: audit 2024-01-24T03:01:59.214445+0000 mgr.smithi152.jkoscf (mgr.14182) 375 : audit [DBG] from='client.14682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:01.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:00 smithi152 bash[16344]: cluster 2024-01-24T03:01:59.575783+0000 mgr.smithi152.jkoscf (mgr.14182) 376 : cluster [DBG] pgmap v301: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:02:02.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:02 smithi195 bash[19846]: cluster 2024-01-24T03:02:01.577493+0000 mgr.smithi152.jkoscf (mgr.14182) 377 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:02:03.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:02 smithi152 bash[16344]: cluster 2024-01-24T03:02:01.577493+0000 mgr.smithi152.jkoscf (mgr.14182) 377 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:02:04.051 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:02:04.052 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:02:04.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:04 smithi152 bash[16344]: cluster 2024-01-24T03:02:03.578359+0000 mgr.smithi152.jkoscf (mgr.14182) 378 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:02:04.625 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:02:04.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:04 smithi195 bash[19846]: cluster 2024-01-24T03:02:03.578359+0000 mgr.smithi152.jkoscf (mgr.14182) 378 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:02:05.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:05 smithi152 bash[16344]: audit 2024-01-24T03:02:04.038592+0000 mgr.smithi152.jkoscf (mgr.14182) 379 : audit [DBG] from='client.14686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:05.627 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:02:05.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:05 smithi195 bash[19846]: audit 2024-01-24T03:02:04.038592+0000 mgr.smithi152.jkoscf (mgr.14182) 379 : audit [DBG] from='client.14686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:06.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:06 smithi152 bash[16344]: cluster 2024-01-24T03:02:05.580095+0000 mgr.smithi152.jkoscf (mgr.14182) 380 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:06.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:06 smithi195 bash[19846]: cluster 2024-01-24T03:02:05.580095+0000 mgr.smithi152.jkoscf (mgr.14182) 380 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:08.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:08 smithi152 bash[16344]: cluster 2024-01-24T03:02:07.581624+0000 mgr.smithi152.jkoscf (mgr.14182) 381 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:02:08.949 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:02:08.949 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:02:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:08 smithi195 bash[19846]: cluster 2024-01-24T03:02:07.581624+0000 mgr.smithi152.jkoscf (mgr.14182) 381 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:02:09.557 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:02:10.558 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:02:10.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:10 smithi152 bash[16344]: audit 2024-01-24T03:02:08.936296+0000 mgr.smithi152.jkoscf (mgr.14182) 382 : audit [DBG] from='client.14690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:10.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:10 smithi152 bash[16344]: cluster 2024-01-24T03:02:09.583241+0000 mgr.smithi152.jkoscf (mgr.14182) 383 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:10 smithi195 bash[19846]: audit 2024-01-24T03:02:08.936296+0000 mgr.smithi152.jkoscf (mgr.14182) 382 : audit [DBG] from='client.14690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:10 smithi195 bash[19846]: cluster 2024-01-24T03:02:09.583241+0000 mgr.smithi152.jkoscf (mgr.14182) 383 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:12 smithi195 bash[19846]: cluster 2024-01-24T03:02:11.584763+0000 mgr.smithi152.jkoscf (mgr.14182) 384 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:13.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:12 smithi152 bash[16344]: cluster 2024-01-24T03:02:11.584763+0000 mgr.smithi152.jkoscf (mgr.14182) 384 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:13.769 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:02:13.769 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:02:14.348 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:02:14.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:14 smithi152 bash[16344]: cluster 2024-01-24T03:02:13.585630+0000 mgr.smithi152.jkoscf (mgr.14182) 385 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:14.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:14 smithi195 bash[19846]: cluster 2024-01-24T03:02:13.585630+0000 mgr.smithi152.jkoscf (mgr.14182) 385 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:15.349 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:02:15.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:15 smithi152 bash[16344]: audit 2024-01-24T03:02:13.761942+0000 mgr.smithi152.jkoscf (mgr.14182) 386 : audit [DBG] from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:15.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:15 smithi195 bash[19846]: audit 2024-01-24T03:02:13.761942+0000 mgr.smithi152.jkoscf (mgr.14182) 386 : audit [DBG] from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:16.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:16 smithi152 bash[16344]: cluster 2024-01-24T03:02:15.587390+0000 mgr.smithi152.jkoscf (mgr.14182) 387 : cluster [DBG] pgmap v309: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:16.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:16 smithi195 bash[19846]: cluster 2024-01-24T03:02:15.587390+0000 mgr.smithi152.jkoscf (mgr.14182) 387 : cluster [DBG] pgmap v309: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:18.674 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:02:18.675 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:02:18.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:18 smithi195 bash[19846]: cluster 2024-01-24T03:02:17.588905+0000 mgr.smithi152.jkoscf (mgr.14182) 388 : cluster [DBG] pgmap v310: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:02:19.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:18 smithi152 bash[16344]: cluster 2024-01-24T03:02:17.588905+0000 mgr.smithi152.jkoscf (mgr.14182) 388 : cluster [DBG] pgmap v310: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:02:19.357 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:02:19.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:19 smithi195 bash[19846]: audit 2024-01-24T03:02:18.667039+0000 mgr.smithi152.jkoscf (mgr.14182) 389 : audit [DBG] from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:20.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:19 smithi152 bash[16344]: audit 2024-01-24T03:02:18.667039+0000 mgr.smithi152.jkoscf (mgr.14182) 389 : audit [DBG] from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:20.358 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:02:20.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:20 smithi195 bash[19846]: cluster 2024-01-24T03:02:19.590508+0000 mgr.smithi152.jkoscf (mgr.14182) 390 : cluster [DBG] pgmap v311: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:21.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:20 smithi152 bash[16344]: cluster 2024-01-24T03:02:19.590508+0000 mgr.smithi152.jkoscf (mgr.14182) 390 : cluster [DBG] pgmap v311: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:22.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:22 smithi195 bash[19846]: cluster 2024-01-24T03:02:21.592003+0000 mgr.smithi152.jkoscf (mgr.14182) 391 : cluster [DBG] pgmap v312: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:23.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:22 smithi152 bash[16344]: cluster 2024-01-24T03:02:21.592003+0000 mgr.smithi152.jkoscf (mgr.14182) 391 : cluster [DBG] pgmap v312: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:23.788 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:02:23.789 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:02:24.395 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:02:24.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:24 smithi152 bash[16344]: cluster 2024-01-24T03:02:23.592713+0000 mgr.smithi152.jkoscf (mgr.14182) 392 : cluster [DBG] pgmap v313: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:24.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:24 smithi195 bash[19846]: cluster 2024-01-24T03:02:23.592713+0000 mgr.smithi152.jkoscf (mgr.14182) 392 : cluster [DBG] pgmap v313: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:25.396 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:02:25.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:25 smithi152 bash[16344]: audit 2024-01-24T03:02:23.773270+0000 mgr.smithi152.jkoscf (mgr.14182) 393 : audit [DBG] from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:25.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:25 smithi195 bash[19846]: audit 2024-01-24T03:02:23.773270+0000 mgr.smithi152.jkoscf (mgr.14182) 393 : audit [DBG] from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:26.581 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:26 smithi152 bash[16344]: cluster 2024-01-24T03:02:25.594673+0000 mgr.smithi152.jkoscf (mgr.14182) 394 : cluster [DBG] pgmap v314: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:26.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:26 smithi195 bash[19846]: cluster 2024-01-24T03:02:25.594673+0000 mgr.smithi152.jkoscf (mgr.14182) 394 : cluster [DBG] pgmap v314: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:28.680 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:02:28.680 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:02:28.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:28 smithi195 bash[19846]: cluster 2024-01-24T03:02:27.596280+0000 mgr.smithi152.jkoscf (mgr.14182) 395 : cluster [DBG] pgmap v315: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:02:29.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:28 smithi152 bash[16344]: cluster 2024-01-24T03:02:27.596280+0000 mgr.smithi152.jkoscf (mgr.14182) 395 : cluster [DBG] pgmap v315: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:02:29.264 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:02:29.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:29 smithi195 bash[19846]: audit 2024-01-24T03:02:28.671422+0000 mgr.smithi152.jkoscf (mgr.14182) 396 : audit [DBG] from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:30.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:29 smithi152 bash[16344]: audit 2024-01-24T03:02:28.671422+0000 mgr.smithi152.jkoscf (mgr.14182) 396 : audit [DBG] from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:30.264 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:02:30.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:30 smithi195 bash[19846]: cluster 2024-01-24T03:02:29.597859+0000 mgr.smithi152.jkoscf (mgr.14182) 397 : cluster [DBG] pgmap v316: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:31.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:30 smithi152 bash[16344]: cluster 2024-01-24T03:02:29.597859+0000 mgr.smithi152.jkoscf (mgr.14182) 397 : cluster [DBG] pgmap v316: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:32.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:32 smithi195 bash[19846]: cluster 2024-01-24T03:02:31.598996+0000 mgr.smithi152.jkoscf (mgr.14182) 398 : cluster [DBG] pgmap v317: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:33.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:32 smithi152 bash[16344]: cluster 2024-01-24T03:02:31.598996+0000 mgr.smithi152.jkoscf (mgr.14182) 398 : cluster [DBG] pgmap v317: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:33.581 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:02:33.581 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:02:34.194 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:02:34.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:34 smithi152 bash[16344]: audit 2024-01-24T03:02:33.567076+0000 mgr.smithi152.jkoscf (mgr.14182) 399 : audit [DBG] from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:34.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:34 smithi152 bash[16344]: cluster 2024-01-24T03:02:33.600212+0000 mgr.smithi152.jkoscf (mgr.14182) 400 : cluster [DBG] pgmap v318: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:34.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:34 smithi195 bash[19846]: audit 2024-01-24T03:02:33.567076+0000 mgr.smithi152.jkoscf (mgr.14182) 399 : audit [DBG] from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:34.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:34 smithi195 bash[19846]: cluster 2024-01-24T03:02:33.600212+0000 mgr.smithi152.jkoscf (mgr.14182) 400 : cluster [DBG] pgmap v318: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:35.194 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:02:36.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:36 smithi152 bash[16344]: cluster 2024-01-24T03:02:35.602133+0000 mgr.smithi152.jkoscf (mgr.14182) 401 : cluster [DBG] pgmap v319: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:36.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:36 smithi195 bash[19846]: cluster 2024-01-24T03:02:35.602133+0000 mgr.smithi152.jkoscf (mgr.14182) 401 : cluster [DBG] pgmap v319: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:38.312 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:02:38.312 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:02:38.946 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:38 smithi152 bash[16344]: cluster 2024-01-24T03:02:37.603624+0000 mgr.smithi152.jkoscf (mgr.14182) 402 : cluster [DBG] pgmap v320: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:02:38.947 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:02:38.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:38 smithi195 bash[19846]: cluster 2024-01-24T03:02:37.603624+0000 mgr.smithi152.jkoscf (mgr.14182) 402 : cluster [DBG] pgmap v320: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:02:39.949 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:02:39.961 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:39 smithi152 bash[16344]: audit 2024-01-24T03:02:38.299376+0000 mgr.smithi152.jkoscf (mgr.14182) 403 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:39.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:39 smithi195 bash[19846]: audit 2024-01-24T03:02:38.299376+0000 mgr.smithi152.jkoscf (mgr.14182) 403 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:40.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:40 smithi195 bash[19846]: cluster 2024-01-24T03:02:39.605202+0000 mgr.smithi152.jkoscf (mgr.14182) 404 : cluster [DBG] pgmap v321: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:40.993 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:40 smithi152 bash[16344]: cluster 2024-01-24T03:02:39.605202+0000 mgr.smithi152.jkoscf (mgr.14182) 404 : cluster [DBG] pgmap v321: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:42.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:42 smithi152 bash[16344]: cluster 2024-01-24T03:02:41.606517+0000 mgr.smithi152.jkoscf (mgr.14182) 405 : cluster [DBG] pgmap v322: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:42.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:42 smithi195 bash[19846]: cluster 2024-01-24T03:02:41.606517+0000 mgr.smithi152.jkoscf (mgr.14182) 405 : cluster [DBG] pgmap v322: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:43.031 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:02:43.031 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:02:43.725 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:02:44.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:44 smithi152 bash[16344]: audit 2024-01-24T03:02:43.017502+0000 mgr.smithi152.jkoscf (mgr.14182) 406 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:44.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:44 smithi152 bash[16344]: cluster 2024-01-24T03:02:43.607697+0000 mgr.smithi152.jkoscf (mgr.14182) 407 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:44.726 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:02:44.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:44 smithi195 bash[19846]: audit 2024-01-24T03:02:43.017502+0000 mgr.smithi152.jkoscf (mgr.14182) 406 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:44.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:44 smithi195 bash[19846]: cluster 2024-01-24T03:02:43.607697+0000 mgr.smithi152.jkoscf (mgr.14182) 407 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:02:46.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:46 smithi195 bash[19846]: cluster 2024-01-24T03:02:45.608903+0000 mgr.smithi152.jkoscf (mgr.14182) 408 : cluster [DBG] pgmap v324: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-24T03:02:47.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:46 smithi152 bash[16344]: cluster 2024-01-24T03:02:45.608903+0000 mgr.smithi152.jkoscf (mgr.14182) 408 : cluster [DBG] pgmap v324: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-24T03:02:48.061 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:02:48.061 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:02:48.663 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:02:48.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:48 smithi195 bash[19846]: cluster 2024-01-24T03:02:47.610452+0000 mgr.smithi152.jkoscf (mgr.14182) 409 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2024-01-24T03:02:49.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:48 smithi152 bash[16344]: cluster 2024-01-24T03:02:47.610452+0000 mgr.smithi152.jkoscf (mgr.14182) 409 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2024-01-24T03:02:49.663 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:02:49.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:49 smithi195 bash[19846]: audit 2024-01-24T03:02:48.046067+0000 mgr.smithi152.jkoscf (mgr.14182) 410 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:50.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:49 smithi152 bash[16344]: audit 2024-01-24T03:02:48.046067+0000 mgr.smithi152.jkoscf (mgr.14182) 410 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:50.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:50 smithi195 bash[19846]: cluster 2024-01-24T03:02:49.612195+0000 mgr.smithi152.jkoscf (mgr.14182) 411 : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-24T03:02:51.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:50 smithi152 bash[16344]: cluster 2024-01-24T03:02:49.612195+0000 mgr.smithi152.jkoscf (mgr.14182) 411 : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-24T03:02:52.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:52 smithi152 bash[16344]: cluster 2024-01-24T03:02:51.613649+0000 mgr.smithi152.jkoscf (mgr.14182) 412 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-24T03:02:52.925 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:02:52.925 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:02:52.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:52 smithi195 bash[19846]: cluster 2024-01-24T03:02:51.613649+0000 mgr.smithi152.jkoscf (mgr.14182) 412 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-24T03:02:53.557 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:02:54.558 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:02:54.572 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:54 smithi152 bash[16344]: audit 2024-01-24T03:02:52.912649+0000 mgr.smithi152.jkoscf (mgr.14182) 413 : audit [DBG] from='client.14726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:54.572 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:54 smithi152 bash[16344]: audit 2024-01-24T03:02:53.575007+0000 mon.smithi152 (mon.0) 733 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:02:54.572 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:54 smithi152 bash[16344]: cluster 2024-01-24T03:02:53.615013+0000 mgr.smithi152.jkoscf (mgr.14182) 414 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-24T03:02:54.572 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:54 smithi152 bash[16344]: audit 2024-01-24T03:02:53.885416+0000 mon.smithi152 (mon.0) 734 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:02:54.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:54 smithi195 bash[19846]: audit 2024-01-24T03:02:52.912649+0000 mgr.smithi152.jkoscf (mgr.14182) 413 : audit [DBG] from='client.14726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:54.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:54 smithi195 bash[19846]: audit 2024-01-24T03:02:53.575007+0000 mon.smithi152 (mon.0) 733 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:02:54.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:54 smithi195 bash[19846]: cluster 2024-01-24T03:02:53.615013+0000 mgr.smithi152.jkoscf (mgr.14182) 414 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-24T03:02:54.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:54 smithi195 bash[19846]: audit 2024-01-24T03:02:53.885416+0000 mon.smithi152 (mon.0) 734 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:02:56.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:56 smithi195 bash[19846]: cluster 2024-01-24T03:02:55.616874+0000 mgr.smithi152.jkoscf (mgr.14182) 415 : cluster [DBG] pgmap v329: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-24T03:02:57.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:56 smithi152 bash[16344]: cluster 2024-01-24T03:02:55.616874+0000 mgr.smithi152.jkoscf (mgr.14182) 415 : cluster [DBG] pgmap v329: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-24T03:02:57.908 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:02:57.908 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:44.708545Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:44.708942Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:44.709213Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:44.709469Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:44.709965Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:01:44.709718Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:44.710999Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:02:58.517 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:02:58.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:58 smithi152 bash[16344]: cluster 2024-01-24T03:02:57.618474+0000 mgr.smithi152.jkoscf (mgr.14182) 416 : cluster [DBG] pgmap v330: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:02:58.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:58 smithi195 bash[19846]: cluster 2024-01-24T03:02:57.618474+0000 mgr.smithi152.jkoscf (mgr.14182) 416 : cluster [DBG] pgmap v330: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:02:59.517 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:02:59.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:59 smithi152 bash[16344]: audit 2024-01-24T03:02:57.894396+0000 mgr.smithi152.jkoscf (mgr.14182) 417 : audit [DBG] from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:59.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:02:59 smithi152 bash[16344]: audit 2024-01-24T03:02:59.527609+0000 mon.smithi152 (mon.0) 735 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:02:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:59 smithi195 bash[19846]: audit 2024-01-24T03:02:57.894396+0000 mgr.smithi152.jkoscf (mgr.14182) 417 : audit [DBG] from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:02:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:02:59 smithi195 bash[19846]: audit 2024-01-24T03:02:59.527609+0000 mon.smithi152 (mon.0) 735 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:03:00.899 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:00 smithi152 bash[16344]: cluster 2024-01-24T03:02:59.620014+0000 mgr.smithi152.jkoscf (mgr.14182) 418 : cluster [DBG] pgmap v331: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:00.899 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:00 smithi152 bash[16344]: audit 2024-01-24T03:02:59.820248+0000 mon.smithi152 (mon.0) 736 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:03:00.899 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:00 smithi152 bash[16344]: audit 2024-01-24T03:02:59.822001+0000 mon.smithi152 (mon.0) 737 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:03:00.900 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:00 smithi152 bash[16344]: audit 2024-01-24T03:02:59.831602+0000 mon.smithi152 (mon.0) 738 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:03:00.900 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:00 smithi152 bash[16344]: audit 2024-01-24T03:02:59.840932+0000 mon.smithi152 (mon.0) 739 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:03:00.900 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:00 smithi152 bash[16344]: audit 2024-01-24T03:02:59.857465+0000 mon.smithi152 (mon.0) 740 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:03:00.900 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:00 smithi152 bash[16344]: cluster 2024-01-24T03:03:00.523333+0000 mon.smithi152 (mon.0) 741 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:03:00.900 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:00 smithi152 bash[16344]: cluster 2024-01-24T03:03:00.523400+0000 mon.smithi152 (mon.0) 742 : cluster [INF] Cluster is now healthy 2024-01-24T03:03:00.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:00 smithi195 bash[19846]: cluster 2024-01-24T03:02:59.620014+0000 mgr.smithi152.jkoscf (mgr.14182) 418 : cluster [DBG] pgmap v331: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:00.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:00 smithi195 bash[19846]: audit 2024-01-24T03:02:59.820248+0000 mon.smithi152 (mon.0) 736 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:03:00.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:00 smithi195 bash[19846]: audit 2024-01-24T03:02:59.822001+0000 mon.smithi152 (mon.0) 737 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:03:00.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:00 smithi195 bash[19846]: audit 2024-01-24T03:02:59.831602+0000 mon.smithi152 (mon.0) 738 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:03:00.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:00 smithi195 bash[19846]: audit 2024-01-24T03:02:59.840932+0000 mon.smithi152 (mon.0) 739 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:03:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:00 smithi195 bash[19846]: audit 2024-01-24T03:02:59.857465+0000 mon.smithi152 (mon.0) 740 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:03:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:00 smithi195 bash[19846]: cluster 2024-01-24T03:03:00.523333+0000 mon.smithi152 (mon.0) 741 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:03:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:00 smithi195 bash[19846]: cluster 2024-01-24T03:03:00.523400+0000 mon.smithi152 (mon.0) 742 : cluster [INF] Cluster is now healthy 2024-01-24T03:03:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:01 smithi195 bash[19846]: cluster 2024-01-24T03:02:59.832859+0000 mgr.smithi152.jkoscf (mgr.14182) 419 : cluster [DBG] pgmap v332: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:03:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:01 smithi195 bash[19846]: cephadm 2024-01-24T03:02:59.861615+0000 mgr.smithi152.jkoscf (mgr.14182) 420 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.otvqvc on smithi195 2024-01-24T03:03:02.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:01 smithi152 bash[16344]: cluster 2024-01-24T03:02:59.832859+0000 mgr.smithi152.jkoscf (mgr.14182) 419 : cluster [DBG] pgmap v332: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:03:02.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:01 smithi152 bash[16344]: cephadm 2024-01-24T03:02:59.861615+0000 mgr.smithi152.jkoscf (mgr.14182) 420 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.otvqvc on smithi195 2024-01-24T03:03:02.808 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:03:02.808 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:00:38.784143Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.memtzr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:49.350390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.bquiud on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-bquiud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.bquiud\nDeploy daemon haproxy.nfs.foo.smithi195.bquiud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.566788Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zkpcbw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zkpcbw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zkpcbw\nDeploy daemon haproxy.nfs.foo.smithi152.zkpcbw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:01:53.568830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kgrpww on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:03:03.398 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:03:03.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:03 smithi195 bash[19846]: cluster 2024-01-24T03:03:01.834426+0000 mgr.smithi152.jkoscf (mgr.14182) 421 : cluster [DBG] pgmap v333: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 300 B/s rd, 0 op/s 2024-01-24T03:03:03.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:03 smithi195 bash[19846]: audit 2024-01-24T03:03:03.657816+0000 mon.smithi152 (mon.0) 743 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.otvqvc"}]: dispatch 2024-01-24T03:03:04.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:03 smithi152 bash[16344]: cluster 2024-01-24T03:03:01.834426+0000 mgr.smithi152.jkoscf (mgr.14182) 421 : cluster [DBG] pgmap v333: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 300 B/s rd, 0 op/s 2024-01-24T03:03:04.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:03 smithi152 bash[16344]: audit 2024-01-24T03:03:03.657816+0000 mon.smithi152 (mon.0) 743 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.otvqvc"}]: dispatch 2024-01-24T03:03:04.399 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:03:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: audit 2024-01-24T03:03:02.792184+0000 mgr.smithi152.jkoscf (mgr.14182) 422 : audit [DBG] from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:04.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: cephadm 2024-01-24T03:03:03.656598+0000 mgr.smithi152.jkoscf (mgr.14182) 423 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc 2024-01-24T03:03:04.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:03:04.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc 2024-01-24T03:03:04.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:04.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:03:04.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:04.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.otvqvc ... 2024-01-24T03:03:04.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:04.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:03:04.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:03:04.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:03:04.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.otvqvc ... 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:03:04.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: cephadm 2024-01-24T03:03:03.657139+0000 mgr.smithi152.jkoscf (mgr.14182) 424 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: cephadm 2024-01-24T03:03:03.659664+0000 mgr.smithi152.jkoscf (mgr.14182) 425 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.otvqvc ... 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:03:04.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:03:04.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:04.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:04 smithi195 bash[19846]: cephadm 2024-01-24T03:03:03.664446+0000 mgr.smithi152.jkoscf (mgr.14182) 426 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.ciackf on smithi152 2024-01-24T03:03:05.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: audit 2024-01-24T03:03:02.792184+0000 mgr.smithi152.jkoscf (mgr.14182) 422 : audit [DBG] from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: cephadm 2024-01-24T03:03:03.656598+0000 mgr.smithi152.jkoscf (mgr.14182) 423 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc 2024-01-24T03:03:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:03:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc 2024-01-24T03:03:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:03:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.otvqvc ... 2024-01-24T03:03:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:03:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:03:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:03:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.otvqvc ... 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:03:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: cephadm 2024-01-24T03:03:03.657139+0000 mgr.smithi152.jkoscf (mgr.14182) 424 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: cephadm 2024-01-24T03:03:03.659664+0000 mgr.smithi152.jkoscf (mgr.14182) 425 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.otvqvc ... 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:03:05.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:05.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:04 smithi152 bash[16344]: cephadm 2024-01-24T03:03:03.664446+0000 mgr.smithi152.jkoscf (mgr.14182) 426 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.ciackf on smithi152 2024-01-24T03:03:05.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:05 smithi195 bash[19846]: cluster 2024-01-24T03:03:03.836110+0000 mgr.smithi152.jkoscf (mgr.14182) 427 : cluster [DBG] pgmap v334: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 901 B/s rd, 0 op/s 2024-01-24T03:03:06.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:05 smithi152 bash[16344]: cluster 2024-01-24T03:03:03.836110+0000 mgr.smithi152.jkoscf (mgr.14182) 427 : cluster [DBG] pgmap v334: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 901 B/s rd, 0 op/s 2024-01-24T03:03:07.730 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:03:07.730 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:03:07.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:07 smithi152 bash[16344]: cluster 2024-01-24T03:03:05.837028+0000 mgr.smithi152.jkoscf (mgr.14182) 428 : cluster [DBG] pgmap v335: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 100 B/s wr, 1 op/s 2024-01-24T03:03:07.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:07 smithi152 bash[16344]: audit 2024-01-24T03:03:07.557113+0000 mon.smithi152 (mon.0) 744 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.ciackf"}]: dispatch 2024-01-24T03:03:07.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:07 smithi195 bash[19846]: cluster 2024-01-24T03:03:05.837028+0000 mgr.smithi152.jkoscf (mgr.14182) 428 : cluster [DBG] pgmap v335: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 100 B/s wr, 1 op/s 2024-01-24T03:03:07.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:07 smithi195 bash[19846]: audit 2024-01-24T03:03:07.557113+0000 mon.smithi152 (mon.0) 744 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.ciackf"}]: dispatch 2024-01-24T03:03:08.419 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:03:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: cephadm 2024-01-24T03:03:07.556368+0000 mgr.smithi152.jkoscf (mgr.14182) 429 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf 2024-01-24T03:03:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:03:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf 2024-01-24T03:03:08.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf 2024-01-24T03:03:08.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:03:08.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf 2024-01-24T03:03:08.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.ciackf ... 2024-01-24T03:03:08.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:08.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:03:08.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:03:08.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:03:08.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:08.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:03:08.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:03:08.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:03:08.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:03:08.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:03:08.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf 2024-01-24T03:03:08.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:03:08.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf 2024-01-24T03:03:08.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf 2024-01-24T03:03:08.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:03:08.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf 2024-01-24T03:03:08.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.ciackf ... 2024-01-24T03:03:08.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:08.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: cephadm 2024-01-24T03:03:07.556593+0000 mgr.smithi152.jkoscf (mgr.14182) 430 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.ciackf 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: cephadm 2024-01-24T03:03:07.558390+0000 mgr.smithi152.jkoscf (mgr.14182) 431 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.ciackf ... 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:03:08.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:03:08.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:03:08.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:08.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: cephadm 2024-01-24T03:03:07.560346+0000 mgr.smithi152.jkoscf (mgr.14182) 432 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:03:08.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: cephadm 2024-01-24T03:03:07.564318+0000 mgr.smithi152.jkoscf (mgr.14182) 433 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:03:08.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: cluster 2024-01-24T03:03:07.565158+0000 mgr.smithi152.jkoscf (mgr.14182) 434 : cluster [DBG] pgmap v336: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 102 B/s wr, 1 op/s 2024-01-24T03:03:08.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: cluster 2024-01-24T03:03:07.712412+0000 mon.smithi152 (mon.0) 745 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:03:08.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:08 smithi195 bash[19846]: audit 2024-01-24T03:03:07.717090+0000 mgr.smithi152.jkoscf (mgr.14182) 435 : audit [DBG] from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: cephadm 2024-01-24T03:03:07.556368+0000 mgr.smithi152.jkoscf (mgr.14182) 429 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf 2024-01-24T03:03:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:03:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf 2024-01-24T03:03:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf 2024-01-24T03:03:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:03:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf 2024-01-24T03:03:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.ciackf ... 2024-01-24T03:03:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:03:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:03:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.ciackf ... 2024-01-24T03:03:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: cephadm 2024-01-24T03:03:07.556593+0000 mgr.smithi152.jkoscf (mgr.14182) 430 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.ciackf 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: cephadm 2024-01-24T03:03:07.558390+0000 mgr.smithi152.jkoscf (mgr.14182) 431 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.ciackf ... 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:03:09.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:03:09.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:03:09.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:03:09.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: cephadm 2024-01-24T03:03:07.560346+0000 mgr.smithi152.jkoscf (mgr.14182) 432 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:03:09.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: cephadm 2024-01-24T03:03:07.564318+0000 mgr.smithi152.jkoscf (mgr.14182) 433 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:03:09.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: cluster 2024-01-24T03:03:07.565158+0000 mgr.smithi152.jkoscf (mgr.14182) 434 : cluster [DBG] pgmap v336: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 102 B/s wr, 1 op/s 2024-01-24T03:03:09.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: cluster 2024-01-24T03:03:07.712412+0000 mon.smithi152 (mon.0) 745 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:03:09.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:08 smithi152 bash[16344]: audit 2024-01-24T03:03:07.717090+0000 mgr.smithi152.jkoscf (mgr.14182) 435 : audit [DBG] from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:09.421 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:03:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:09 smithi195 bash[19846]: cluster 2024-01-24T03:03:09.566672+0000 mgr.smithi152.jkoscf (mgr.14182) 436 : cluster [DBG] pgmap v337: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 102 B/s wr, 1 op/s 2024-01-24T03:03:10.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:09 smithi152 bash[16344]: cluster 2024-01-24T03:03:09.566672+0000 mgr.smithi152.jkoscf (mgr.14182) 436 : cluster [DBG] pgmap v337: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 102 B/s wr, 1 op/s 2024-01-24T03:03:12.777 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:03:12.777 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:03:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:12 smithi195 bash[19846]: cluster 2024-01-24T03:03:11.568416+0000 mgr.smithi152.jkoscf (mgr.14182) 437 : cluster [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 87 B/s wr, 1 op/s 2024-01-24T03:03:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:12 smithi195 bash[19846]: audit 2024-01-24T03:03:12.065557+0000 mon.smithi152 (mon.0) 746 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:03:13.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:12 smithi152 bash[16344]: cluster 2024-01-24T03:03:11.568416+0000 mgr.smithi152.jkoscf (mgr.14182) 437 : cluster [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 87 B/s wr, 1 op/s 2024-01-24T03:03:13.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:12 smithi152 bash[16344]: audit 2024-01-24T03:03:12.065557+0000 mon.smithi152 (mon.0) 746 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:03:13.393 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:03:14.394 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:03:14.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:14 smithi152 bash[16344]: audit 2024-01-24T03:03:12.766367+0000 mgr.smithi152.jkoscf (mgr.14182) 438 : audit [DBG] from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:14.582 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:14 smithi152 bash[16344]: cluster 2024-01-24T03:03:13.569784+0000 mgr.smithi152.jkoscf (mgr.14182) 439 : cluster [DBG] pgmap v339: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.0 KiB/s rd, 87 B/s wr, 1 op/s 2024-01-24T03:03:14.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:14 smithi195 bash[19846]: audit 2024-01-24T03:03:12.766367+0000 mgr.smithi152.jkoscf (mgr.14182) 438 : audit [DBG] from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:14.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:14 smithi195 bash[19846]: cluster 2024-01-24T03:03:13.569784+0000 mgr.smithi152.jkoscf (mgr.14182) 439 : cluster [DBG] pgmap v339: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.0 KiB/s rd, 87 B/s wr, 1 op/s 2024-01-24T03:03:16.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:16 smithi195 bash[19846]: cluster 2024-01-24T03:03:15.571701+0000 mgr.smithi152.jkoscf (mgr.14182) 440 : cluster [DBG] pgmap v340: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 523 B/s rd, 87 B/s wr, 0 op/s 2024-01-24T03:03:17.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:16 smithi152 bash[16344]: cluster 2024-01-24T03:03:15.571701+0000 mgr.smithi152.jkoscf (mgr.14182) 440 : cluster [DBG] pgmap v340: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 523 B/s rd, 87 B/s wr, 0 op/s 2024-01-24T03:03:17.761 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:03:17.761 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:03:18.385 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:03:18.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:18 smithi195 bash[19846]: cluster 2024-01-24T03:03:17.572915+0000 mgr.smithi152.jkoscf (mgr.14182) 441 : cluster [DBG] pgmap v341: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2024-01-24T03:03:19.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:18 smithi152 bash[16344]: cluster 2024-01-24T03:03:17.572915+0000 mgr.smithi152.jkoscf (mgr.14182) 441 : cluster [DBG] pgmap v341: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2024-01-24T03:03:19.386 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:03:19.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:19 smithi152 bash[16344]: audit 2024-01-24T03:03:17.745166+0000 mgr.smithi152.jkoscf (mgr.14182) 442 : audit [DBG] from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:19.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:19 smithi195 bash[19846]: audit 2024-01-24T03:03:17.745166+0000 mgr.smithi152.jkoscf (mgr.14182) 442 : audit [DBG] from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:20.867 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:20 smithi152 bash[16344]: cluster 2024-01-24T03:03:19.574622+0000 mgr.smithi152.jkoscf (mgr.14182) 443 : cluster [DBG] pgmap v342: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:20.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:20 smithi195 bash[19846]: cluster 2024-01-24T03:03:19.574622+0000 mgr.smithi152.jkoscf (mgr.14182) 443 : cluster [DBG] pgmap v342: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:22.679 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:03:22.679 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:03:22.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:22 smithi195 bash[19846]: cluster 2024-01-24T03:03:21.576489+0000 mgr.smithi152.jkoscf (mgr.14182) 444 : cluster [DBG] pgmap v343: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:23.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:22 smithi152 bash[16344]: cluster 2024-01-24T03:03:21.576489+0000 mgr.smithi152.jkoscf (mgr.14182) 444 : cluster [DBG] pgmap v343: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:23.300 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:03:23.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:23 smithi195 bash[19846]: audit 2024-01-24T03:03:22.665542+0000 mgr.smithi152.jkoscf (mgr.14182) 445 : audit [DBG] from='client.14750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:24.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:23 smithi152 bash[16344]: audit 2024-01-24T03:03:22.665542+0000 mgr.smithi152.jkoscf (mgr.14182) 445 : audit [DBG] from='client.14750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:24.301 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:03:24.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:24 smithi195 bash[19846]: cluster 2024-01-24T03:03:23.577805+0000 mgr.smithi152.jkoscf (mgr.14182) 446 : cluster [DBG] pgmap v344: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:25.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:24 smithi152 bash[16344]: cluster 2024-01-24T03:03:23.577805+0000 mgr.smithi152.jkoscf (mgr.14182) 446 : cluster [DBG] pgmap v344: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:26.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:26 smithi195 bash[19846]: cluster 2024-01-24T03:03:25.579326+0000 mgr.smithi152.jkoscf (mgr.14182) 447 : cluster [DBG] pgmap v345: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:27.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:26 smithi152 bash[16344]: cluster 2024-01-24T03:03:25.579326+0000 mgr.smithi152.jkoscf (mgr.14182) 447 : cluster [DBG] pgmap v345: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:27.767 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:03:27.767 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:03:28.418 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:03:28.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:28 smithi195 bash[19846]: cluster 2024-01-24T03:03:27.581019+0000 mgr.smithi152.jkoscf (mgr.14182) 448 : cluster [DBG] pgmap v346: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:03:29.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:28 smithi152 bash[16344]: cluster 2024-01-24T03:03:27.581019+0000 mgr.smithi152.jkoscf (mgr.14182) 448 : cluster [DBG] pgmap v346: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:03:29.419 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:03:29.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:29 smithi195 bash[19846]: audit 2024-01-24T03:03:27.752049+0000 mgr.smithi152.jkoscf (mgr.14182) 449 : audit [DBG] from='client.14754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:30.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:29 smithi152 bash[16344]: audit 2024-01-24T03:03:27.752049+0000 mgr.smithi152.jkoscf (mgr.14182) 449 : audit [DBG] from='client.14754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:30.813 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:30 smithi152 bash[16344]: cluster 2024-01-24T03:03:29.582570+0000 mgr.smithi152.jkoscf (mgr.14182) 450 : cluster [DBG] pgmap v347: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:30.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:30 smithi195 bash[19846]: cluster 2024-01-24T03:03:29.582570+0000 mgr.smithi152.jkoscf (mgr.14182) 450 : cluster [DBG] pgmap v347: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:32.639 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:03:32.639 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:03:32.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:32 smithi195 bash[19846]: cluster 2024-01-24T03:03:31.584297+0000 mgr.smithi152.jkoscf (mgr.14182) 451 : cluster [DBG] pgmap v348: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:33.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:32 smithi152 bash[16344]: cluster 2024-01-24T03:03:31.584297+0000 mgr.smithi152.jkoscf (mgr.14182) 451 : cluster [DBG] pgmap v348: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:33.319 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:03:33.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:33 smithi195 bash[19846]: audit 2024-01-24T03:03:32.623565+0000 mgr.smithi152.jkoscf (mgr.14182) 452 : audit [DBG] from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:34.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:33 smithi152 bash[16344]: audit 2024-01-24T03:03:32.623565+0000 mgr.smithi152.jkoscf (mgr.14182) 452 : audit [DBG] from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:34.323 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:03:34.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:34 smithi195 bash[19846]: cluster 2024-01-24T03:03:33.585630+0000 mgr.smithi152.jkoscf (mgr.14182) 453 : cluster [DBG] pgmap v349: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:35.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:34 smithi152 bash[16344]: cluster 2024-01-24T03:03:33.585630+0000 mgr.smithi152.jkoscf (mgr.14182) 453 : cluster [DBG] pgmap v349: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:36 smithi195 bash[19846]: cluster 2024-01-24T03:03:35.587528+0000 mgr.smithi152.jkoscf (mgr.14182) 454 : cluster [DBG] pgmap v350: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:37.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:36 smithi152 bash[16344]: cluster 2024-01-24T03:03:35.587528+0000 mgr.smithi152.jkoscf (mgr.14182) 454 : cluster [DBG] pgmap v350: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:37.549 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:03:37.549 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:03:38.155 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:03:38.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:38 smithi195 bash[19846]: audit 2024-01-24T03:03:37.532612+0000 mgr.smithi152.jkoscf (mgr.14182) 455 : audit [DBG] from='client.14762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:38.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:38 smithi195 bash[19846]: cluster 2024-01-24T03:03:37.589349+0000 mgr.smithi152.jkoscf (mgr.14182) 456 : cluster [DBG] pgmap v351: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:03:39.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:38 smithi152 bash[16344]: audit 2024-01-24T03:03:37.532612+0000 mgr.smithi152.jkoscf (mgr.14182) 455 : audit [DBG] from='client.14762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:39.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:38 smithi152 bash[16344]: cluster 2024-01-24T03:03:37.589349+0000 mgr.smithi152.jkoscf (mgr.14182) 456 : cluster [DBG] pgmap v351: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:03:39.156 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:03:40.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:40 smithi195 bash[19846]: cluster 2024-01-24T03:03:39.590916+0000 mgr.smithi152.jkoscf (mgr.14182) 457 : cluster [DBG] pgmap v352: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:41.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:40 smithi152 bash[16344]: cluster 2024-01-24T03:03:39.590916+0000 mgr.smithi152.jkoscf (mgr.14182) 457 : cluster [DBG] pgmap v352: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:42.416 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:03:42.417 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:03:42.982 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:42 smithi152 bash[16344]: cluster 2024-01-24T03:03:41.592655+0000 mgr.smithi152.jkoscf (mgr.14182) 458 : cluster [DBG] pgmap v353: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:42.983 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:03:42.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:42 smithi195 bash[19846]: cluster 2024-01-24T03:03:41.592655+0000 mgr.smithi152.jkoscf (mgr.14182) 458 : cluster [DBG] pgmap v353: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:43.984 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:03:43.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:43 smithi195 bash[19846]: audit 2024-01-24T03:03:42.408079+0000 mgr.smithi152.jkoscf (mgr.14182) 459 : audit [DBG] from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:43.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:43 smithi152 bash[16344]: audit 2024-01-24T03:03:42.408079+0000 mgr.smithi152.jkoscf (mgr.14182) 459 : audit [DBG] from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:44.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:44 smithi195 bash[19846]: cluster 2024-01-24T03:03:43.593990+0000 mgr.smithi152.jkoscf (mgr.14182) 460 : cluster [DBG] pgmap v354: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:45.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:44 smithi152 bash[16344]: cluster 2024-01-24T03:03:43.593990+0000 mgr.smithi152.jkoscf (mgr.14182) 460 : cluster [DBG] pgmap v354: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:46.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:45 smithi152 bash[16344]: cluster 2024-01-24T03:03:45.595853+0000 mgr.smithi152.jkoscf (mgr.14182) 461 : cluster [DBG] pgmap v355: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:45 smithi195 bash[19846]: cluster 2024-01-24T03:03:45.595853+0000 mgr.smithi152.jkoscf (mgr.14182) 461 : cluster [DBG] pgmap v355: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:47.193 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:03:47.193 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:03:47.787 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:03:48.789 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:03:48.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:48 smithi195 bash[19846]: audit 2024-01-24T03:03:47.182182+0000 mgr.smithi152.jkoscf (mgr.14182) 462 : audit [DBG] from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:48.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:48 smithi195 bash[19846]: cluster 2024-01-24T03:03:47.597704+0000 mgr.smithi152.jkoscf (mgr.14182) 463 : cluster [DBG] pgmap v356: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:03:49.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:48 smithi152 bash[16344]: audit 2024-01-24T03:03:47.182182+0000 mgr.smithi152.jkoscf (mgr.14182) 462 : audit [DBG] from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:49.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:48 smithi152 bash[16344]: cluster 2024-01-24T03:03:47.597704+0000 mgr.smithi152.jkoscf (mgr.14182) 463 : cluster [DBG] pgmap v356: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:03:50.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:50 smithi195 bash[19846]: cluster 2024-01-24T03:03:49.599332+0000 mgr.smithi152.jkoscf (mgr.14182) 464 : cluster [DBG] pgmap v357: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:51.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:50 smithi152 bash[16344]: cluster 2024-01-24T03:03:49.599332+0000 mgr.smithi152.jkoscf (mgr.14182) 464 : cluster [DBG] pgmap v357: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:52.024 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:03:52.025 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:03:52.565 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:03:52.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:52 smithi152 bash[16344]: cluster 2024-01-24T03:03:51.601364+0000 mgr.smithi152.jkoscf (mgr.14182) 465 : cluster [DBG] pgmap v358: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:52.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:52 smithi195 bash[19846]: cluster 2024-01-24T03:03:51.601364+0000 mgr.smithi152.jkoscf (mgr.14182) 465 : cluster [DBG] pgmap v358: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:53.566 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:03:53.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:53 smithi152 bash[16344]: audit 2024-01-24T03:03:52.011397+0000 mgr.smithi152.jkoscf (mgr.14182) 466 : audit [DBG] from='client.14774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:53 smithi195 bash[19846]: audit 2024-01-24T03:03:52.011397+0000 mgr.smithi152.jkoscf (mgr.14182) 466 : audit [DBG] from='client.14774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:54.936 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:54 smithi152 bash[16344]: cluster 2024-01-24T03:03:53.602764+0000 mgr.smithi152.jkoscf (mgr.14182) 467 : cluster [DBG] pgmap v359: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:54.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:54 smithi195 bash[19846]: cluster 2024-01-24T03:03:53.602764+0000 mgr.smithi152.jkoscf (mgr.14182) 467 : cluster [DBG] pgmap v359: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:56.743 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:03:56.743 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:03:56.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:56 smithi195 bash[19846]: cluster 2024-01-24T03:03:55.604715+0000 mgr.smithi152.jkoscf (mgr.14182) 468 : cluster [DBG] pgmap v360: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:57.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:56 smithi152 bash[16344]: cluster 2024-01-24T03:03:55.604715+0000 mgr.smithi152.jkoscf (mgr.14182) 468 : cluster [DBG] pgmap v360: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:03:57.342 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:03:58.343 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:03:58.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:58 smithi195 bash[19846]: audit 2024-01-24T03:03:56.734474+0000 mgr.smithi152.jkoscf (mgr.14182) 469 : audit [DBG] from='client.14778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:58.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:03:58 smithi195 bash[19846]: cluster 2024-01-24T03:03:57.606336+0000 mgr.smithi152.jkoscf (mgr.14182) 470 : cluster [DBG] pgmap v361: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:03:59.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:58 smithi152 bash[16344]: audit 2024-01-24T03:03:56.734474+0000 mgr.smithi152.jkoscf (mgr.14182) 469 : audit [DBG] from='client.14778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:03:59.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:03:58 smithi152 bash[16344]: cluster 2024-01-24T03:03:57.606336+0000 mgr.smithi152.jkoscf (mgr.14182) 470 : cluster [DBG] pgmap v361: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:04:00.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:00 smithi195 bash[19846]: cluster 2024-01-24T03:03:59.607815+0000 mgr.smithi152.jkoscf (mgr.14182) 471 : cluster [DBG] pgmap v362: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:01.039 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:00 smithi152 bash[16344]: cluster 2024-01-24T03:03:59.607815+0000 mgr.smithi152.jkoscf (mgr.14182) 471 : cluster [DBG] pgmap v362: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:01.473 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:04:01.473 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:04:02.151 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:04:02.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:02 smithi195 bash[19846]: audit 2024-01-24T03:04:01.463846+0000 mgr.smithi152.jkoscf (mgr.14182) 472 : audit [DBG] from='client.14782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:02.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:02 smithi195 bash[19846]: cluster 2024-01-24T03:04:01.609585+0000 mgr.smithi152.jkoscf (mgr.14182) 473 : cluster [DBG] pgmap v363: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:03.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:02 smithi152 bash[16344]: audit 2024-01-24T03:04:01.463846+0000 mgr.smithi152.jkoscf (mgr.14182) 472 : audit [DBG] from='client.14782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:03.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:02 smithi152 bash[16344]: cluster 2024-01-24T03:04:01.609585+0000 mgr.smithi152.jkoscf (mgr.14182) 473 : cluster [DBG] pgmap v363: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:03.152 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:04:04.552 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:04 smithi152 bash[16344]: cluster 2024-01-24T03:04:03.610966+0000 mgr.smithi152.jkoscf (mgr.14182) 474 : cluster [DBG] pgmap v364: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:04.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:04 smithi195 bash[19846]: cluster 2024-01-24T03:04:03.610966+0000 mgr.smithi152.jkoscf (mgr.14182) 474 : cluster [DBG] pgmap v364: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:06.451 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:04:06.451 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:04:06.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:06 smithi152 bash[16344]: cluster 2024-01-24T03:04:05.612943+0000 mgr.smithi152.jkoscf (mgr.14182) 475 : cluster [DBG] pgmap v365: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:06 smithi195 bash[19846]: cluster 2024-01-24T03:04:05.612943+0000 mgr.smithi152.jkoscf (mgr.14182) 475 : cluster [DBG] pgmap v365: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:07.026 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:04:07.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:07 smithi195 bash[19846]: audit 2024-01-24T03:04:06.436768+0000 mgr.smithi152.jkoscf (mgr.14182) 476 : audit [DBG] from='client.14786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:07.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:07 smithi195 bash[19846]: audit 2024-01-24T03:04:07.568057+0000 mon.smithi152 (mon.0) 747 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:04:08.026 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:04:08.039 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:07 smithi152 bash[16344]: audit 2024-01-24T03:04:06.436768+0000 mgr.smithi152.jkoscf (mgr.14182) 476 : audit [DBG] from='client.14786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:08.039 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:07 smithi152 bash[16344]: audit 2024-01-24T03:04:07.568057+0000 mon.smithi152 (mon.0) 747 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:04:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:08 smithi195 bash[19846]: cluster 2024-01-24T03:04:07.614608+0000 mgr.smithi152.jkoscf (mgr.14182) 477 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:04:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:08 smithi195 bash[19846]: audit 2024-01-24T03:04:07.876508+0000 mon.smithi152 (mon.0) 748 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:04:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:08 smithi195 bash[19846]: audit 2024-01-24T03:04:08.191845+0000 mon.smithi152 (mon.0) 749 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:04:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:08 smithi195 bash[19846]: audit 2024-01-24T03:04:08.193399+0000 mon.smithi152 (mon.0) 750 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:04:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:08 smithi195 bash[19846]: audit 2024-01-24T03:04:08.203163+0000 mon.smithi152 (mon.0) 751 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:04:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:08 smithi195 bash[19846]: audit 2024-01-24T03:04:08.210628+0000 mon.smithi152 (mon.0) 752 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:04:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:08 smithi195 bash[19846]: audit 2024-01-24T03:04:08.228168+0000 mon.smithi152 (mon.0) 753 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:04:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:08 smithi152 bash[16344]: cluster 2024-01-24T03:04:07.614608+0000 mgr.smithi152.jkoscf (mgr.14182) 477 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:04:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:08 smithi152 bash[16344]: audit 2024-01-24T03:04:07.876508+0000 mon.smithi152 (mon.0) 748 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:04:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:08 smithi152 bash[16344]: audit 2024-01-24T03:04:08.191845+0000 mon.smithi152 (mon.0) 749 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:04:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:08 smithi152 bash[16344]: audit 2024-01-24T03:04:08.193399+0000 mon.smithi152 (mon.0) 750 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:04:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:08 smithi152 bash[16344]: audit 2024-01-24T03:04:08.203163+0000 mon.smithi152 (mon.0) 751 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:04:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:08 smithi152 bash[16344]: audit 2024-01-24T03:04:08.210628+0000 mon.smithi152 (mon.0) 752 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:04:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:08 smithi152 bash[16344]: audit 2024-01-24T03:04:08.228168+0000 mon.smithi152 (mon.0) 753 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:04:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:09 smithi152 bash[16344]: cluster 2024-01-24T03:04:08.204013+0000 mgr.smithi152.jkoscf (mgr.14182) 478 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:04:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:09 smithi152 bash[16344]: cephadm 2024-01-24T03:04:08.231875+0000 mgr.smithi152.jkoscf (mgr.14182) 479 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.tijlyp on smithi195 2024-01-24T03:04:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:09 smithi152 bash[16344]: cluster 2024-01-24T03:04:09.199345+0000 mon.smithi152 (mon.0) 754 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:04:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:09 smithi152 bash[16344]: cluster 2024-01-24T03:04:09.199431+0000 mon.smithi152 (mon.0) 755 : cluster [INF] Cluster is now healthy 2024-01-24T03:04:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:09 smithi152 bash[16344]: audit 2024-01-24T03:04:09.281368+0000 mon.smithi152 (mon.0) 756 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:04:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:09 smithi195 bash[19846]: cluster 2024-01-24T03:04:08.204013+0000 mgr.smithi152.jkoscf (mgr.14182) 478 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:04:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:09 smithi195 bash[19846]: cephadm 2024-01-24T03:04:08.231875+0000 mgr.smithi152.jkoscf (mgr.14182) 479 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.tijlyp on smithi195 2024-01-24T03:04:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:09 smithi195 bash[19846]: cluster 2024-01-24T03:04:09.199345+0000 mon.smithi152 (mon.0) 754 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:04:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:09 smithi195 bash[19846]: cluster 2024-01-24T03:04:09.199431+0000 mon.smithi152 (mon.0) 755 : cluster [INF] Cluster is now healthy 2024-01-24T03:04:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:09 smithi195 bash[19846]: audit 2024-01-24T03:04:09.281368+0000 mon.smithi152 (mon.0) 756 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:04:11.356 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:04:11.356 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:01:53.570531Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qqvpco on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:03.659430Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.otvqvc on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-otvqvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.otvqvc\nDeploy daemon haproxy.nfs.foo.smithi195.otvqvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.558279Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ciackf on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ciackf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ciackf\nDeploy daemon haproxy.nfs.foo.smithi152.ciackf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:03:07.560254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ypwzpc on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:04:11.913 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:11 smithi195 bash[19846]: cluster 2024-01-24T03:04:10.205583+0000 mgr.smithi152.jkoscf (mgr.14182) 480 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:04:11.915 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:04:11.975 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:11 smithi152 bash[16344]: cluster 2024-01-24T03:04:10.205583+0000 mgr.smithi152.jkoscf (mgr.14182) 480 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:04:12.916 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:04:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:12 smithi195 bash[19846]: audit 2024-01-24T03:04:11.339085+0000 mgr.smithi152.jkoscf (mgr.14182) 481 : audit [DBG] from='client.14790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:12 smithi195 bash[19846]: audit 2024-01-24T03:04:11.972174+0000 mon.smithi152 (mon.0) 757 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.tijlyp"}]: dispatch 2024-01-24T03:04:13.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:12 smithi152 bash[16344]: audit 2024-01-24T03:04:11.339085+0000 mgr.smithi152.jkoscf (mgr.14182) 481 : audit [DBG] from='client.14790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:13.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:12 smithi152 bash[16344]: audit 2024-01-24T03:04:11.972174+0000 mon.smithi152 (mon.0) 757 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.tijlyp"}]: dispatch 2024-01-24T03:04:13.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: cephadm 2024-01-24T03:04:11.971005+0000 mgr.smithi152.jkoscf (mgr.14182) 482 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp 2024-01-24T03:04:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:04:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp 2024-01-24T03:04:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:04:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.tijlyp ... 2024-01-24T03:04:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:04:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:04:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:04:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:04:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:04:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:04:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:04:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:04:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp 2024-01-24T03:04:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:04:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp 2024-01-24T03:04:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:04:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.tijlyp ... 2024-01-24T03:04:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: cephadm 2024-01-24T03:04:11.971519+0000 mgr.smithi152.jkoscf (mgr.14182) 483 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: cephadm 2024-01-24T03:04:11.974038+0000 mgr.smithi152.jkoscf (mgr.14182) 484 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.tijlyp ... 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:04:13.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:04:13.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:04:13.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:13.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: cephadm 2024-01-24T03:04:11.979154+0000 mgr.smithi152.jkoscf (mgr.14182) 485 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.rptwru on smithi152 2024-01-24T03:04:13.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:13 smithi195 bash[19846]: cluster 2024-01-24T03:04:12.206995+0000 mgr.smithi152.jkoscf (mgr.14182) 486 : cluster [DBG] pgmap v369: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:04:14.035 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: cephadm 2024-01-24T03:04:11.971005+0000 mgr.smithi152.jkoscf (mgr.14182) 482 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp 2024-01-24T03:04:14.035 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:04:14.036 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp 2024-01-24T03:04:14.036 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:14.036 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:04:14.036 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:14.036 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.tijlyp ... 2024-01-24T03:04:14.036 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:14.036 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:04:14.036 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:04:14.036 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:04:14.036 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:14.036 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:04:14.036 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:04:14.037 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:04:14.037 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:04:14.037 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:04:14.037 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp 2024-01-24T03:04:14.037 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:04:14.037 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp 2024-01-24T03:04:14.037 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:14.037 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:04:14.037 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:14.037 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.tijlyp ... 2024-01-24T03:04:14.037 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:14.037 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:04:14.037 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:04:14.038 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:04:14.038 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:14.038 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: cephadm 2024-01-24T03:04:11.971519+0000 mgr.smithi152.jkoscf (mgr.14182) 483 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:14.038 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: cephadm 2024-01-24T03:04:11.974038+0000 mgr.smithi152.jkoscf (mgr.14182) 484 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp 2024-01-24T03:04:14.038 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:04:14.038 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp 2024-01-24T03:04:14.038 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:14.038 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:04:14.038 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp 2024-01-24T03:04:14.038 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.tijlyp ... 2024-01-24T03:04:14.038 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:14.038 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:04:14.039 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:04:14.039 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:04:14.039 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:14.039 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: cephadm 2024-01-24T03:04:11.979154+0000 mgr.smithi152.jkoscf (mgr.14182) 485 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.rptwru on smithi152 2024-01-24T03:04:14.039 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:13 smithi152 bash[16344]: cluster 2024-01-24T03:04:12.206995+0000 mgr.smithi152.jkoscf (mgr.14182) 486 : cluster [DBG] pgmap v369: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:04:15.965 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:15 smithi152 bash[16344]: cluster 2024-01-24T03:04:14.208334+0000 mgr.smithi152.jkoscf (mgr.14182) 487 : cluster [DBG] pgmap v370: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:04:15.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:15 smithi195 bash[19846]: cluster 2024-01-24T03:04:14.208334+0000 mgr.smithi152.jkoscf (mgr.14182) 487 : cluster [DBG] pgmap v370: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:04:16.115 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:04:16.115 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:04:16.808 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:04:16.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:16 smithi195 bash[19846]: audit 2024-01-24T03:04:15.991629+0000 mon.smithi152 (mon.0) 758 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.rptwru"}]: dispatch 2024-01-24T03:04:17.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:16 smithi152 bash[16344]: audit 2024-01-24T03:04:15.991629+0000 mon.smithi152 (mon.0) 758 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.rptwru"}]: dispatch 2024-01-24T03:04:17.809 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:04:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: cephadm 2024-01-24T03:04:15.990950+0000 mgr.smithi152.jkoscf (mgr.14182) 488 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru 2024-01-24T03:04:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:04:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.rptwru ... 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:04:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:04:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru 2024-01-24T03:04:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:04:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru 2024-01-24T03:04:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru 2024-01-24T03:04:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:04:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru 2024-01-24T03:04:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.rptwru ... 2024-01-24T03:04:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:04:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:04:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:04:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: cephadm 2024-01-24T03:04:15.991210+0000 mgr.smithi152.jkoscf (mgr.14182) 489 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.rptwru 2024-01-24T03:04:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: cephadm 2024-01-24T03:04:15.992660+0000 mgr.smithi152.jkoscf (mgr.14182) 490 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru 2024-01-24T03:04:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:04:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru 2024-01-24T03:04:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru 2024-01-24T03:04:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:04:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru 2024-01-24T03:04:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.rptwru ... 2024-01-24T03:04:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:04:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:04:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:04:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: cephadm 2024-01-24T03:04:15.995004+0000 mgr.smithi152.jkoscf (mgr.14182) 491 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:04:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: cephadm 2024-01-24T03:04:15.997065+0000 mgr.smithi152.jkoscf (mgr.14182) 492 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:04:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: cluster 2024-01-24T03:04:15.999008+0000 mgr.smithi152.jkoscf (mgr.14182) 493 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-01-24T03:04:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: audit 2024-01-24T03:04:16.099248+0000 mgr.smithi152.jkoscf (mgr.14182) 494 : audit [DBG] from='client.14794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: cluster 2024-01-24T03:04:16.715393+0000 mon.smithi152 (mon.0) 759 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:04:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:17 smithi195 bash[19846]: audit 2024-01-24T03:04:17.120838+0000 mon.smithi152 (mon.0) 760 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:04:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: cephadm 2024-01-24T03:04:15.990950+0000 mgr.smithi152.jkoscf (mgr.14182) 488 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru 2024-01-24T03:04:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:04:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru 2024-01-24T03:04:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru 2024-01-24T03:04:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:04:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru 2024-01-24T03:04:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.rptwru ... 2024-01-24T03:04:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:04:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:04:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:04:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:04:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:04:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:04:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:04:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:04:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru 2024-01-24T03:04:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:04:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru 2024-01-24T03:04:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru 2024-01-24T03:04:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:04:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru 2024-01-24T03:04:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.rptwru ... 2024-01-24T03:04:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: cephadm 2024-01-24T03:04:15.991210+0000 mgr.smithi152.jkoscf (mgr.14182) 489 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.rptwru 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: cephadm 2024-01-24T03:04:15.992660+0000 mgr.smithi152.jkoscf (mgr.14182) 490 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.rptwru ... 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:04:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:04:18.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:04:18.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:04:18.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: cephadm 2024-01-24T03:04:15.995004+0000 mgr.smithi152.jkoscf (mgr.14182) 491 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:04:18.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: cephadm 2024-01-24T03:04:15.997065+0000 mgr.smithi152.jkoscf (mgr.14182) 492 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:04:18.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: cluster 2024-01-24T03:04:15.999008+0000 mgr.smithi152.jkoscf (mgr.14182) 493 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-01-24T03:04:18.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: audit 2024-01-24T03:04:16.099248+0000 mgr.smithi152.jkoscf (mgr.14182) 494 : audit [DBG] from='client.14794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:18.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: cluster 2024-01-24T03:04:16.715393+0000 mon.smithi152 (mon.0) 759 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:04:18.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:17 smithi152 bash[16344]: audit 2024-01-24T03:04:17.120838+0000 mon.smithi152 (mon.0) 760 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:04:19.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:19 smithi195 bash[19846]: cluster 2024-01-24T03:04:18.000696+0000 mgr.smithi152.jkoscf (mgr.14182) 495 : cluster [DBG] pgmap v372: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-01-24T03:04:20.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:19 smithi152 bash[16344]: cluster 2024-01-24T03:04:18.000696+0000 mgr.smithi152.jkoscf (mgr.14182) 495 : cluster [DBG] pgmap v372: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-01-24T03:04:21.008 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:04:21.009 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:04:21.599 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:04:21.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:21 smithi195 bash[19846]: cluster 2024-01-24T03:04:20.002569+0000 mgr.smithi152.jkoscf (mgr.14182) 496 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:04:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:21 smithi152 bash[16344]: cluster 2024-01-24T03:04:20.002569+0000 mgr.smithi152.jkoscf (mgr.14182) 496 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:04:22.600 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:04:23.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:22 smithi152 bash[16344]: audit 2024-01-24T03:04:20.993989+0000 mgr.smithi152.jkoscf (mgr.14182) 497 : audit [DBG] from='client.14798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:23.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:22 smithi152 bash[16344]: cluster 2024-01-24T03:04:22.004356+0000 mgr.smithi152.jkoscf (mgr.14182) 498 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:04:23.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:22 smithi195 bash[19846]: audit 2024-01-24T03:04:20.993989+0000 mgr.smithi152.jkoscf (mgr.14182) 497 : audit [DBG] from='client.14798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:23.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:22 smithi195 bash[19846]: cluster 2024-01-24T03:04:22.004356+0000 mgr.smithi152.jkoscf (mgr.14182) 498 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:04:25.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:25 smithi152 bash[16344]: cluster 2024-01-24T03:04:24.005821+0000 mgr.smithi152.jkoscf (mgr.14182) 499 : cluster [DBG] pgmap v375: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:04:25.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:25 smithi152 bash[16344]: audit 2024-01-24T03:04:24.280032+0000 mon.smithi152 (mon.0) 761 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:04:25.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:25 smithi195 bash[19846]: cluster 2024-01-24T03:04:24.005821+0000 mgr.smithi152.jkoscf (mgr.14182) 499 : cluster [DBG] pgmap v375: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:04:25.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:25 smithi195 bash[19846]: audit 2024-01-24T03:04:24.280032+0000 mon.smithi152 (mon.0) 761 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:04:25.759 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:04:25.759 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:04:26.376 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:04:27.377 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:04:27.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:27 smithi152 bash[16344]: audit 2024-01-24T03:04:25.750014+0000 mgr.smithi152.jkoscf (mgr.14182) 500 : audit [DBG] from='client.14802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:27.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:27 smithi152 bash[16344]: cluster 2024-01-24T03:04:26.007558+0000 mgr.smithi152.jkoscf (mgr.14182) 501 : cluster [DBG] pgmap v376: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:04:27.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:27 smithi195 bash[19846]: audit 2024-01-24T03:04:25.750014+0000 mgr.smithi152.jkoscf (mgr.14182) 500 : audit [DBG] from='client.14802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:27.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:27 smithi195 bash[19846]: cluster 2024-01-24T03:04:26.007558+0000 mgr.smithi152.jkoscf (mgr.14182) 501 : cluster [DBG] pgmap v376: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:04:29.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:29 smithi152 bash[16344]: cluster 2024-01-24T03:04:28.008847+0000 mgr.smithi152.jkoscf (mgr.14182) 502 : cluster [DBG] pgmap v377: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:04:29.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:29 smithi195 bash[19846]: cluster 2024-01-24T03:04:28.008847+0000 mgr.smithi152.jkoscf (mgr.14182) 502 : cluster [DBG] pgmap v377: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:04:30.519 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:04:30.519 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:04:31.130 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:04:31.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:31 smithi152 bash[16344]: cluster 2024-01-24T03:04:30.010640+0000 mgr.smithi152.jkoscf (mgr.14182) 503 : cluster [DBG] pgmap v378: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:31.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:31 smithi152 bash[16344]: audit 2024-01-24T03:04:30.504923+0000 mgr.smithi152.jkoscf (mgr.14182) 504 : audit [DBG] from='client.14806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:31.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:31 smithi195 bash[19846]: cluster 2024-01-24T03:04:30.010640+0000 mgr.smithi152.jkoscf (mgr.14182) 503 : cluster [DBG] pgmap v378: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:31.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:31 smithi195 bash[19846]: audit 2024-01-24T03:04:30.504923+0000 mgr.smithi152.jkoscf (mgr.14182) 504 : audit [DBG] from='client.14806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:32.131 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:04:33.551 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:33 smithi152 bash[16344]: cluster 2024-01-24T03:04:32.012392+0000 mgr.smithi152.jkoscf (mgr.14182) 505 : cluster [DBG] pgmap v379: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:33.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:33 smithi195 bash[19846]: cluster 2024-01-24T03:04:32.012392+0000 mgr.smithi152.jkoscf (mgr.14182) 505 : cluster [DBG] pgmap v379: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:35.395 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:04:35.395 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:04:35.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:35 smithi152 bash[16344]: cluster 2024-01-24T03:04:34.013936+0000 mgr.smithi152.jkoscf (mgr.14182) 506 : cluster [DBG] pgmap v380: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:35.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:35 smithi195 bash[19846]: cluster 2024-01-24T03:04:34.013936+0000 mgr.smithi152.jkoscf (mgr.14182) 506 : cluster [DBG] pgmap v380: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:36.056 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:04:36.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:36 smithi195 bash[19846]: audit 2024-01-24T03:04:35.385927+0000 mgr.smithi152.jkoscf (mgr.14182) 507 : audit [DBG] from='client.14810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:36.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:36 smithi152 bash[16344]: audit 2024-01-24T03:04:35.385927+0000 mgr.smithi152.jkoscf (mgr.14182) 507 : audit [DBG] from='client.14810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:37.057 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:04:37.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:37 smithi195 bash[19846]: cluster 2024-01-24T03:04:36.015669+0000 mgr.smithi152.jkoscf (mgr.14182) 508 : cluster [DBG] pgmap v381: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:37.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:37 smithi152 bash[16344]: cluster 2024-01-24T03:04:36.015669+0000 mgr.smithi152.jkoscf (mgr.14182) 508 : cluster [DBG] pgmap v381: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:39.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:39 smithi195 bash[19846]: cluster 2024-01-24T03:04:38.017018+0000 mgr.smithi152.jkoscf (mgr.14182) 509 : cluster [DBG] pgmap v382: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:04:39.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:39 smithi152 bash[16344]: cluster 2024-01-24T03:04:38.017018+0000 mgr.smithi152.jkoscf (mgr.14182) 509 : cluster [DBG] pgmap v382: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:04:40.390 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:04:40.390 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:04:40.992 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:04:41.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:41 smithi195 bash[19846]: cluster 2024-01-24T03:04:40.018829+0000 mgr.smithi152.jkoscf (mgr.14182) 510 : cluster [DBG] pgmap v383: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:41.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:41 smithi195 bash[19846]: audit 2024-01-24T03:04:40.376650+0000 mgr.smithi152.jkoscf (mgr.14182) 511 : audit [DBG] from='client.14814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:41.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:41 smithi152 bash[16344]: cluster 2024-01-24T03:04:40.018829+0000 mgr.smithi152.jkoscf (mgr.14182) 510 : cluster [DBG] pgmap v383: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:41.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:41 smithi152 bash[16344]: audit 2024-01-24T03:04:40.376650+0000 mgr.smithi152.jkoscf (mgr.14182) 511 : audit [DBG] from='client.14814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:41.993 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:04:43.435 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:43 smithi152 bash[16344]: cluster 2024-01-24T03:04:42.020682+0000 mgr.smithi152.jkoscf (mgr.14182) 512 : cluster [DBG] pgmap v384: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:43.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:43 smithi195 bash[19846]: cluster 2024-01-24T03:04:42.020682+0000 mgr.smithi152.jkoscf (mgr.14182) 512 : cluster [DBG] pgmap v384: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:45.150 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:04:45.150 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:04:45.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:45 smithi152 bash[16344]: cluster 2024-01-24T03:04:44.022407+0000 mgr.smithi152.jkoscf (mgr.14182) 513 : cluster [DBG] pgmap v385: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:45.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:45 smithi195 bash[19846]: cluster 2024-01-24T03:04:44.022407+0000 mgr.smithi152.jkoscf (mgr.14182) 513 : cluster [DBG] pgmap v385: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:45.771 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:04:46.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:46 smithi195 bash[19846]: audit 2024-01-24T03:04:45.136879+0000 mgr.smithi152.jkoscf (mgr.14182) 514 : audit [DBG] from='client.14818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:46.772 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:04:46.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:46 smithi152 bash[16344]: audit 2024-01-24T03:04:45.136879+0000 mgr.smithi152.jkoscf (mgr.14182) 514 : audit [DBG] from='client.14818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:47.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:47 smithi195 bash[19846]: cluster 2024-01-24T03:04:46.024137+0000 mgr.smithi152.jkoscf (mgr.14182) 515 : cluster [DBG] pgmap v386: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:47.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:47 smithi152 bash[16344]: cluster 2024-01-24T03:04:46.024137+0000 mgr.smithi152.jkoscf (mgr.14182) 515 : cluster [DBG] pgmap v386: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:49.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:49 smithi195 bash[19846]: cluster 2024-01-24T03:04:48.025464+0000 mgr.smithi152.jkoscf (mgr.14182) 516 : cluster [DBG] pgmap v387: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:04:49.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:49 smithi152 bash[16344]: cluster 2024-01-24T03:04:48.025464+0000 mgr.smithi152.jkoscf (mgr.14182) 516 : cluster [DBG] pgmap v387: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:04:49.984 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:04:49.984 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:04:50.593 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:04:51.594 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:04:51.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:51 smithi195 bash[19846]: audit 2024-01-24T03:04:49.974459+0000 mgr.smithi152.jkoscf (mgr.14182) 517 : audit [DBG] from='client.14822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:51.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:51 smithi195 bash[19846]: cluster 2024-01-24T03:04:50.026918+0000 mgr.smithi152.jkoscf (mgr.14182) 518 : cluster [DBG] pgmap v388: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:51.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:51 smithi152 bash[16344]: audit 2024-01-24T03:04:49.974459+0000 mgr.smithi152.jkoscf (mgr.14182) 517 : audit [DBG] from='client.14822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:51.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:51 smithi152 bash[16344]: cluster 2024-01-24T03:04:50.026918+0000 mgr.smithi152.jkoscf (mgr.14182) 518 : cluster [DBG] pgmap v388: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:53.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:53 smithi195 bash[19846]: cluster 2024-01-24T03:04:52.028843+0000 mgr.smithi152.jkoscf (mgr.14182) 519 : cluster [DBG] pgmap v389: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:53.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:53 smithi152 bash[16344]: cluster 2024-01-24T03:04:52.028843+0000 mgr.smithi152.jkoscf (mgr.14182) 519 : cluster [DBG] pgmap v389: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:54.852 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:04:54.852 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:04:55.443 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:04:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:55 smithi195 bash[19846]: cluster 2024-01-24T03:04:54.030449+0000 mgr.smithi152.jkoscf (mgr.14182) 520 : cluster [DBG] pgmap v390: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:55.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:55 smithi152 bash[16344]: cluster 2024-01-24T03:04:54.030449+0000 mgr.smithi152.jkoscf (mgr.14182) 520 : cluster [DBG] pgmap v390: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:56.444 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:04:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:56 smithi195 bash[19846]: audit 2024-01-24T03:04:54.835370+0000 mgr.smithi152.jkoscf (mgr.14182) 521 : audit [DBG] from='client.14826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:56.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:56 smithi152 bash[16344]: audit 2024-01-24T03:04:54.835370+0000 mgr.smithi152.jkoscf (mgr.14182) 521 : audit [DBG] from='client.14826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:04:57.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:57 smithi195 bash[19846]: cluster 2024-01-24T03:04:56.032153+0000 mgr.smithi152.jkoscf (mgr.14182) 522 : cluster [DBG] pgmap v391: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:57.801 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:57 smithi152 bash[16344]: cluster 2024-01-24T03:04:56.032153+0000 mgr.smithi152.jkoscf (mgr.14182) 522 : cluster [DBG] pgmap v391: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:04:59.550 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:04:59.550 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:04:59.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:04:59 smithi195 bash[19846]: cluster 2024-01-24T03:04:58.033459+0000 mgr.smithi152.jkoscf (mgr.14182) 523 : cluster [DBG] pgmap v392: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:04:59.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:04:59 smithi152 bash[16344]: cluster 2024-01-24T03:04:58.033459+0000 mgr.smithi152.jkoscf (mgr.14182) 523 : cluster [DBG] pgmap v392: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:05:00.174 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:05:00.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:00 smithi195 bash[19846]: audit 2024-01-24T03:04:59.535900+0000 mgr.smithi152.jkoscf (mgr.14182) 524 : audit [DBG] from='client.14830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:00.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:00 smithi152 bash[16344]: audit 2024-01-24T03:04:59.535900+0000 mgr.smithi152.jkoscf (mgr.14182) 524 : audit [DBG] from='client.14830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:01.175 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:05:01.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:01 smithi152 bash[16344]: cluster 2024-01-24T03:05:00.035291+0000 mgr.smithi152.jkoscf (mgr.14182) 525 : cluster [DBG] pgmap v393: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:01.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:01 smithi195 bash[19846]: cluster 2024-01-24T03:05:00.035291+0000 mgr.smithi152.jkoscf (mgr.14182) 525 : cluster [DBG] pgmap v393: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:03.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:03 smithi195 bash[19846]: cluster 2024-01-24T03:05:02.037039+0000 mgr.smithi152.jkoscf (mgr.14182) 526 : cluster [DBG] pgmap v394: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:03 smithi152 bash[16344]: cluster 2024-01-24T03:05:02.037039+0000 mgr.smithi152.jkoscf (mgr.14182) 526 : cluster [DBG] pgmap v394: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:04.509 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:05:04.510 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:05:05.137 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:05:05.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:05 smithi195 bash[19846]: cluster 2024-01-24T03:05:04.038744+0000 mgr.smithi152.jkoscf (mgr.14182) 527 : cluster [DBG] pgmap v395: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:05.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:05 smithi195 bash[19846]: audit 2024-01-24T03:05:04.493380+0000 mgr.smithi152.jkoscf (mgr.14182) 528 : audit [DBG] from='client.14834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:05.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:05 smithi152 bash[16344]: cluster 2024-01-24T03:05:04.038744+0000 mgr.smithi152.jkoscf (mgr.14182) 527 : cluster [DBG] pgmap v395: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:05.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:05 smithi152 bash[16344]: audit 2024-01-24T03:05:04.493380+0000 mgr.smithi152.jkoscf (mgr.14182) 528 : audit [DBG] from='client.14834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:06.138 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:05:07.522 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:07 smithi152 bash[16344]: cluster 2024-01-24T03:05:06.040484+0000 mgr.smithi152.jkoscf (mgr.14182) 529 : cluster [DBG] pgmap v396: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:07.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:07 smithi195 bash[19846]: cluster 2024-01-24T03:05:06.040484+0000 mgr.smithi152.jkoscf (mgr.14182) 529 : cluster [DBG] pgmap v396: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:09.340 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:05:09.340 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:05:09.779 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:09 smithi195 bash[19846]: cluster 2024-01-24T03:05:08.041778+0000 mgr.smithi152.jkoscf (mgr.14182) 530 : cluster [DBG] pgmap v397: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:05:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:09 smithi152 bash[16344]: cluster 2024-01-24T03:05:08.041778+0000 mgr.smithi152.jkoscf (mgr.14182) 530 : cluster [DBG] pgmap v397: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:05:10.034 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:05:10.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:10 smithi195 bash[19846]: audit 2024-01-24T03:05:09.315045+0000 mgr.smithi152.jkoscf (mgr.14182) 531 : audit [DBG] from='client.14838 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:10.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:10 smithi152 bash[16344]: audit 2024-01-24T03:05:09.315045+0000 mgr.smithi152.jkoscf (mgr.14182) 531 : audit [DBG] from='client.14838 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:11.035 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:05:11.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:11 smithi195 bash[19846]: cluster 2024-01-24T03:05:10.043068+0000 mgr.smithi152.jkoscf (mgr.14182) 532 : cluster [DBG] pgmap v398: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:11.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:11 smithi152 bash[16344]: cluster 2024-01-24T03:05:10.043068+0000 mgr.smithi152.jkoscf (mgr.14182) 532 : cluster [DBG] pgmap v398: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:13.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:13 smithi195 bash[19846]: cluster 2024-01-24T03:05:12.044810+0000 mgr.smithi152.jkoscf (mgr.14182) 533 : cluster [DBG] pgmap v399: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:13.821 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:13 smithi152 bash[16344]: cluster 2024-01-24T03:05:12.044810+0000 mgr.smithi152.jkoscf (mgr.14182) 533 : cluster [DBG] pgmap v399: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:14.269 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:05:14.269 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:05:14.975 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:05:15.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:15 smithi195 bash[19846]: cluster 2024-01-24T03:05:14.045810+0000 mgr.smithi152.jkoscf (mgr.14182) 534 : cluster [DBG] pgmap v400: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:15.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:15 smithi195 bash[19846]: audit 2024-01-24T03:05:14.253556+0000 mgr.smithi152.jkoscf (mgr.14182) 535 : audit [DBG] from='client.14842 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:15.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:15 smithi152 bash[16344]: cluster 2024-01-24T03:05:14.045810+0000 mgr.smithi152.jkoscf (mgr.14182) 534 : cluster [DBG] pgmap v400: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:15.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:15 smithi152 bash[16344]: audit 2024-01-24T03:05:14.253556+0000 mgr.smithi152.jkoscf (mgr.14182) 535 : audit [DBG] from='client.14842 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:15.976 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:05:16.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:16 smithi195 bash[19846]: audit 2024-01-24T03:05:16.001045+0000 mon.smithi152 (mon.0) 762 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:05:16.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:16 smithi195 bash[19846]: audit 2024-01-24T03:05:16.302434+0000 mon.smithi152 (mon.0) 763 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:05:16.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:16 smithi195 bash[19846]: audit 2024-01-24T03:05:16.303767+0000 mon.smithi152 (mon.0) 764 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:05:16.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:16 smithi195 bash[19846]: audit 2024-01-24T03:05:16.311878+0000 mon.smithi152 (mon.0) 765 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:05:16.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:16 smithi195 bash[19846]: audit 2024-01-24T03:05:16.318870+0000 mon.smithi152 (mon.0) 766 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:05:16.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:16 smithi195 bash[19846]: audit 2024-01-24T03:05:16.333202+0000 mon.smithi152 (mon.0) 767 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:05:16.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:16 smithi152 bash[16344]: audit 2024-01-24T03:05:16.001045+0000 mon.smithi152 (mon.0) 762 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:05:16.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:16 smithi152 bash[16344]: audit 2024-01-24T03:05:16.302434+0000 mon.smithi152 (mon.0) 763 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:05:16.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:16 smithi152 bash[16344]: audit 2024-01-24T03:05:16.303767+0000 mon.smithi152 (mon.0) 764 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:05:16.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:16 smithi152 bash[16344]: audit 2024-01-24T03:05:16.311878+0000 mon.smithi152 (mon.0) 765 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:05:16.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:16 smithi152 bash[16344]: audit 2024-01-24T03:05:16.318870+0000 mon.smithi152 (mon.0) 766 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:05:16.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:16 smithi152 bash[16344]: audit 2024-01-24T03:05:16.333202+0000 mon.smithi152 (mon.0) 767 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:05:17.632 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:17 smithi152 bash[16344]: cluster 2024-01-24T03:05:16.047717+0000 mgr.smithi152.jkoscf (mgr.14182) 536 : cluster [DBG] pgmap v401: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:17.633 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:17 smithi152 bash[16344]: cluster 2024-01-24T03:05:16.312830+0000 mgr.smithi152.jkoscf (mgr.14182) 537 : cluster [DBG] pgmap v402: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:05:17.633 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:17 smithi152 bash[16344]: cephadm 2024-01-24T03:05:16.335900+0000 mgr.smithi152.jkoscf (mgr.14182) 538 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.fzwaga on smithi195 2024-01-24T03:05:17.633 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:17 smithi152 bash[16344]: cluster 2024-01-24T03:05:16.474152+0000 mon.smithi152 (mon.0) 768 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:05:17.633 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:17 smithi152 bash[16344]: cluster 2024-01-24T03:05:16.474243+0000 mon.smithi152 (mon.0) 769 : cluster [INF] Cluster is now healthy 2024-01-24T03:05:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:17 smithi195 bash[19846]: cluster 2024-01-24T03:05:16.047717+0000 mgr.smithi152.jkoscf (mgr.14182) 536 : cluster [DBG] pgmap v401: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:17 smithi195 bash[19846]: cluster 2024-01-24T03:05:16.312830+0000 mgr.smithi152.jkoscf (mgr.14182) 537 : cluster [DBG] pgmap v402: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:05:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:17 smithi195 bash[19846]: cephadm 2024-01-24T03:05:16.335900+0000 mgr.smithi152.jkoscf (mgr.14182) 538 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.fzwaga on smithi195 2024-01-24T03:05:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:17 smithi195 bash[19846]: cluster 2024-01-24T03:05:16.474152+0000 mon.smithi152 (mon.0) 768 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:05:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:17 smithi195 bash[19846]: cluster 2024-01-24T03:05:16.474243+0000 mon.smithi152 (mon.0) 769 : cluster [INF] Cluster is now healthy 2024-01-24T03:05:19.357 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:05:19.358 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:03:07.564175Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dbcymu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:11.973708Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tijlyp on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tijlyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tijlyp\nDeploy daemon haproxy.nfs.foo.smithi195.tijlyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.992532Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.rptwru on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-rptwru\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.rptwru\nDeploy daemon haproxy.nfs.foo.smithi152.rptwru ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:04:15.994890Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.yohred on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:05:19.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:19 smithi152 bash[16344]: cluster 2024-01-24T03:05:18.313883+0000 mgr.smithi152.jkoscf (mgr.14182) 539 : cluster [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:05:19.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:19 smithi195 bash[19846]: cluster 2024-01-24T03:05:18.313883+0000 mgr.smithi152.jkoscf (mgr.14182) 539 : cluster [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:05:19.997 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:05:20.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:20 smithi195 bash[19846]: audit 2024-01-24T03:05:19.341858+0000 mgr.smithi152.jkoscf (mgr.14182) 540 : audit [DBG] from='client.14846 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:20.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:20 smithi195 bash[19846]: audit 2024-01-24T03:05:20.301068+0000 mon.smithi152 (mon.0) 770 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.fzwaga"}]: dispatch 2024-01-24T03:05:20.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:20 smithi152 bash[16344]: audit 2024-01-24T03:05:19.341858+0000 mgr.smithi152.jkoscf (mgr.14182) 540 : audit [DBG] from='client.14846 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:20.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:20 smithi152 bash[16344]: audit 2024-01-24T03:05:20.301068+0000 mon.smithi152 (mon.0) 770 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.fzwaga"}]: dispatch 2024-01-24T03:05:20.998 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:05:21.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: cephadm 2024-01-24T03:05:20.299820+0000 mgr.smithi152.jkoscf (mgr.14182) 541 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.fzwaga ... 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:05:21.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.fzwaga ... 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:05:21.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:21.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: cephadm 2024-01-24T03:05:20.300420+0000 mgr.smithi152.jkoscf (mgr.14182) 542 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: cephadm 2024-01-24T03:05:20.302848+0000 mgr.smithi152.jkoscf (mgr.14182) 543 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga 2024-01-24T03:05:21.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:05:21.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga 2024-01-24T03:05:21.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:05:21.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.fzwaga ... 2024-01-24T03:05:21.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:21.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:05:21.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:05:21.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:05:21.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:21.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: cephadm 2024-01-24T03:05:20.308261+0000 mgr.smithi152.jkoscf (mgr.14182) 544 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.swftjg on smithi152 2024-01-24T03:05:21.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:21 smithi195 bash[19846]: cluster 2024-01-24T03:05:20.315710+0000 mgr.smithi152.jkoscf (mgr.14182) 545 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:05:21.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: cephadm 2024-01-24T03:05:20.299820+0000 mgr.smithi152.jkoscf (mgr.14182) 541 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga 2024-01-24T03:05:21.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:05:21.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga 2024-01-24T03:05:21.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.fzwaga ... 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:05:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga 2024-01-24T03:05:21.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:05:21.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga 2024-01-24T03:05:21.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:05:21.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.fzwaga ... 2024-01-24T03:05:21.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:21.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:05:21.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:05:21.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:05:21.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:21.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: cephadm 2024-01-24T03:05:20.300420+0000 mgr.smithi152.jkoscf (mgr.14182) 542 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: cephadm 2024-01-24T03:05:20.302848+0000 mgr.smithi152.jkoscf (mgr.14182) 543 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga 2024-01-24T03:05:21.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:05:21.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga 2024-01-24T03:05:21.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:05:21.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga 2024-01-24T03:05:21.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.fzwaga ... 2024-01-24T03:05:21.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:21.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:05:21.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:05:21.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:05:21.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:21.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: cephadm 2024-01-24T03:05:20.308261+0000 mgr.smithi152.jkoscf (mgr.14182) 544 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.swftjg on smithi152 2024-01-24T03:05:21.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:21 smithi152 bash[16344]: cluster 2024-01-24T03:05:20.315710+0000 mgr.smithi152.jkoscf (mgr.14182) 545 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:05:23.711 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:23 smithi152 bash[16344]: cluster 2024-01-24T03:05:22.316688+0000 mgr.smithi152.jkoscf (mgr.14182) 546 : cluster [DBG] pgmap v405: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:05:23.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:23 smithi195 bash[19846]: cluster 2024-01-24T03:05:22.316688+0000 mgr.smithi152.jkoscf (mgr.14182) 546 : cluster [DBG] pgmap v405: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:05:24.206 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:05:24.206 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:05:24.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:24 smithi195 bash[19846]: audit 2024-01-24T03:05:24.179045+0000 mon.smithi152 (mon.0) 771 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.swftjg"}]: dispatch 2024-01-24T03:05:24.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:24 smithi195 bash[19846]: audit 2024-01-24T03:05:24.277840+0000 mon.smithi152 (mon.0) 772 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:05:24.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:24 smithi152 bash[16344]: audit 2024-01-24T03:05:24.179045+0000 mon.smithi152 (mon.0) 771 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.swftjg"}]: dispatch 2024-01-24T03:05:24.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:24 smithi152 bash[16344]: audit 2024-01-24T03:05:24.277840+0000 mon.smithi152 (mon.0) 772 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:05:24.856 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:05:25.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: cephadm 2024-01-24T03:05:24.177917+0000 mgr.smithi152.jkoscf (mgr.14182) 547 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg 2024-01-24T03:05:25.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:05:25.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg 2024-01-24T03:05:25.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.swftjg ... 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:05:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg 2024-01-24T03:05:25.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:05:25.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg 2024-01-24T03:05:25.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:05:25.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.swftjg ... 2024-01-24T03:05:25.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:25.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:05:25.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:05:25.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:05:25.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:25.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: cephadm 2024-01-24T03:05:24.178520+0000 mgr.smithi152.jkoscf (mgr.14182) 548 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: cephadm 2024-01-24T03:05:24.180398+0000 mgr.smithi152.jkoscf (mgr.14182) 549 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg 2024-01-24T03:05:25.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:05:25.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg 2024-01-24T03:05:25.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:05:25.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.swftjg ... 2024-01-24T03:05:25.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:25.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:05:25.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:05:25.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:05:25.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:25.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: cephadm 2024-01-24T03:05:24.184676+0000 mgr.smithi152.jkoscf (mgr.14182) 550 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:05:25.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: cephadm 2024-01-24T03:05:24.188831+0000 mgr.smithi152.jkoscf (mgr.14182) 551 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:05:25.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: cluster 2024-01-24T03:05:24.189968+0000 mgr.smithi152.jkoscf (mgr.14182) 552 : cluster [DBG] pgmap v406: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:05:25.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: audit 2024-01-24T03:05:24.196129+0000 mgr.smithi152.jkoscf (mgr.14182) 553 : audit [DBG] from='client.14850 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:25.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:25 smithi195 bash[19846]: cluster 2024-01-24T03:05:24.379717+0000 mon.smithi152 (mon.0) 773 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:05:25.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: cephadm 2024-01-24T03:05:24.177917+0000 mgr.smithi152.jkoscf (mgr.14182) 547 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg 2024-01-24T03:05:25.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:05:25.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg 2024-01-24T03:05:25.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:05:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.swftjg ... 2024-01-24T03:05:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:05:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:05:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:05:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:05:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:05:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:05:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:05:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:05:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.swftjg ... 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: cephadm 2024-01-24T03:05:24.178520+0000 mgr.smithi152.jkoscf (mgr.14182) 548 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: cephadm 2024-01-24T03:05:24.180398+0000 mgr.smithi152.jkoscf (mgr.14182) 549 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg 2024-01-24T03:05:25.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.swftjg ... 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: cephadm 2024-01-24T03:05:24.184676+0000 mgr.smithi152.jkoscf (mgr.14182) 550 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: cephadm 2024-01-24T03:05:24.188831+0000 mgr.smithi152.jkoscf (mgr.14182) 551 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: cluster 2024-01-24T03:05:24.189968+0000 mgr.smithi152.jkoscf (mgr.14182) 552 : cluster [DBG] pgmap v406: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: audit 2024-01-24T03:05:24.196129+0000 mgr.smithi152.jkoscf (mgr.14182) 553 : audit [DBG] from='client.14850 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:25.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:25 smithi152 bash[16344]: cluster 2024-01-24T03:05:24.379717+0000 mon.smithi152 (mon.0) 773 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:05:25.857 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:05:27.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:27 smithi195 bash[19846]: cluster 2024-01-24T03:05:26.191703+0000 mgr.smithi152.jkoscf (mgr.14182) 554 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:05:27.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:27 smithi195 bash[19846]: audit 2024-01-24T03:05:27.184066+0000 mon.smithi152 (mon.0) 774 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:05:27.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:27 smithi152 bash[16344]: cluster 2024-01-24T03:05:26.191703+0000 mgr.smithi152.jkoscf (mgr.14182) 554 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:05:27.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:27 smithi152 bash[16344]: audit 2024-01-24T03:05:27.184066+0000 mon.smithi152 (mon.0) 774 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:05:29.174 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:05:29.175 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:05:29.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:29 smithi152 bash[16344]: cluster 2024-01-24T03:05:28.193006+0000 mgr.smithi152.jkoscf (mgr.14182) 555 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2024-01-24T03:05:29.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:29 smithi195 bash[19846]: cluster 2024-01-24T03:05:28.193006+0000 mgr.smithi152.jkoscf (mgr.14182) 555 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2024-01-24T03:05:29.797 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:05:30.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:30 smithi195 bash[19846]: audit 2024-01-24T03:05:29.158753+0000 mgr.smithi152.jkoscf (mgr.14182) 556 : audit [DBG] from='client.14854 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:30.798 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:05:30.810 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:30 smithi152 bash[16344]: audit 2024-01-24T03:05:29.158753+0000 mgr.smithi152.jkoscf (mgr.14182) 556 : audit [DBG] from='client.14854 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:31.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:31 smithi195 bash[19846]: cluster 2024-01-24T03:05:30.194787+0000 mgr.smithi152.jkoscf (mgr.14182) 557 : cluster [DBG] pgmap v409: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:05:31.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:31 smithi152 bash[16344]: cluster 2024-01-24T03:05:30.194787+0000 mgr.smithi152.jkoscf (mgr.14182) 557 : cluster [DBG] pgmap v409: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:05:33.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:33 smithi195 bash[19846]: cluster 2024-01-24T03:05:32.196499+0000 mgr.smithi152.jkoscf (mgr.14182) 558 : cluster [DBG] pgmap v410: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:05:33.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:33 smithi152 bash[16344]: cluster 2024-01-24T03:05:32.196499+0000 mgr.smithi152.jkoscf (mgr.14182) 558 : cluster [DBG] pgmap v410: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:05:33.893 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:05:33.893 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:05:34.534 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:05:35.534 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:05:35.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:35 smithi195 bash[19846]: audit 2024-01-24T03:05:33.879059+0000 mgr.smithi152.jkoscf (mgr.14182) 559 : audit [DBG] from='client.14858 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:35.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:35 smithi195 bash[19846]: cluster 2024-01-24T03:05:34.198127+0000 mgr.smithi152.jkoscf (mgr.14182) 560 : cluster [DBG] pgmap v411: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:05:35.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:35 smithi152 bash[16344]: audit 2024-01-24T03:05:33.879059+0000 mgr.smithi152.jkoscf (mgr.14182) 559 : audit [DBG] from='client.14858 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:35.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:35 smithi152 bash[16344]: cluster 2024-01-24T03:05:34.198127+0000 mgr.smithi152.jkoscf (mgr.14182) 560 : cluster [DBG] pgmap v411: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:05:37.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:37 smithi195 bash[19846]: cluster 2024-01-24T03:05:36.199804+0000 mgr.smithi152.jkoscf (mgr.14182) 561 : cluster [DBG] pgmap v412: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:37.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:37 smithi152 bash[16344]: cluster 2024-01-24T03:05:36.199804+0000 mgr.smithi152.jkoscf (mgr.14182) 561 : cluster [DBG] pgmap v412: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:38.602 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:05:38.602 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:05:39.213 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:05:39.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:39 smithi152 bash[16344]: cluster 2024-01-24T03:05:38.201119+0000 mgr.smithi152.jkoscf (mgr.14182) 562 : cluster [DBG] pgmap v413: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:05:39.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:39 smithi152 bash[16344]: audit 2024-01-24T03:05:38.587675+0000 mgr.smithi152.jkoscf (mgr.14182) 563 : audit [DBG] from='client.14862 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:39.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:39 smithi152 bash[16344]: audit 2024-01-24T03:05:39.282134+0000 mon.smithi152 (mon.0) 775 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:05:39.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:39 smithi195 bash[19846]: cluster 2024-01-24T03:05:38.201119+0000 mgr.smithi152.jkoscf (mgr.14182) 562 : cluster [DBG] pgmap v413: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:05:39.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:39 smithi195 bash[19846]: audit 2024-01-24T03:05:38.587675+0000 mgr.smithi152.jkoscf (mgr.14182) 563 : audit [DBG] from='client.14862 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:39.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:39 smithi195 bash[19846]: audit 2024-01-24T03:05:39.282134+0000 mon.smithi152 (mon.0) 775 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:05:40.214 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:05:41.658 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:41 smithi152 bash[16344]: cluster 2024-01-24T03:05:40.202895+0000 mgr.smithi152.jkoscf (mgr.14182) 564 : cluster [DBG] pgmap v414: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:41.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:41 smithi195 bash[19846]: cluster 2024-01-24T03:05:40.202895+0000 mgr.smithi152.jkoscf (mgr.14182) 564 : cluster [DBG] pgmap v414: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:43.351 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:05:43.351 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:05:43.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:43 smithi195 bash[19846]: cluster 2024-01-24T03:05:42.204607+0000 mgr.smithi152.jkoscf (mgr.14182) 565 : cluster [DBG] pgmap v415: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:43.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:43 smithi152 bash[16344]: cluster 2024-01-24T03:05:42.204607+0000 mgr.smithi152.jkoscf (mgr.14182) 565 : cluster [DBG] pgmap v415: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:44.008 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:05:44.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:44 smithi195 bash[19846]: audit 2024-01-24T03:05:43.341048+0000 mgr.smithi152.jkoscf (mgr.14182) 566 : audit [DBG] from='client.14866 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:44.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:44 smithi152 bash[16344]: audit 2024-01-24T03:05:43.341048+0000 mgr.smithi152.jkoscf (mgr.14182) 566 : audit [DBG] from='client.14866 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:45.009 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:05:45.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:45 smithi195 bash[19846]: cluster 2024-01-24T03:05:44.206235+0000 mgr.smithi152.jkoscf (mgr.14182) 567 : cluster [DBG] pgmap v416: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:45.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:45 smithi152 bash[16344]: cluster 2024-01-24T03:05:44.206235+0000 mgr.smithi152.jkoscf (mgr.14182) 567 : cluster [DBG] pgmap v416: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:47.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:47 smithi195 bash[19846]: cluster 2024-01-24T03:05:46.207594+0000 mgr.smithi152.jkoscf (mgr.14182) 568 : cluster [DBG] pgmap v417: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:47.807 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:47 smithi152 bash[16344]: cluster 2024-01-24T03:05:46.207594+0000 mgr.smithi152.jkoscf (mgr.14182) 568 : cluster [DBG] pgmap v417: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:48.154 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:05:48.154 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:05:48.776 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:05:49.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:49 smithi195 bash[19846]: audit 2024-01-24T03:05:48.142389+0000 mgr.smithi152.jkoscf (mgr.14182) 569 : audit [DBG] from='client.14870 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:49.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:49 smithi195 bash[19846]: cluster 2024-01-24T03:05:48.209277+0000 mgr.smithi152.jkoscf (mgr.14182) 570 : cluster [DBG] pgmap v418: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:05:49.777 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:05:49.789 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:49 smithi152 bash[16344]: audit 2024-01-24T03:05:48.142389+0000 mgr.smithi152.jkoscf (mgr.14182) 569 : audit [DBG] from='client.14870 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:49.789 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:49 smithi152 bash[16344]: cluster 2024-01-24T03:05:48.209277+0000 mgr.smithi152.jkoscf (mgr.14182) 570 : cluster [DBG] pgmap v418: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:05:51.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:51 smithi195 bash[19846]: cluster 2024-01-24T03:05:50.211241+0000 mgr.smithi152.jkoscf (mgr.14182) 571 : cluster [DBG] pgmap v419: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:51.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:51 smithi152 bash[16344]: cluster 2024-01-24T03:05:50.211241+0000 mgr.smithi152.jkoscf (mgr.14182) 571 : cluster [DBG] pgmap v419: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:52.950 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:05:52.950 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:05:53.522 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:05:53.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:53 smithi152 bash[16344]: cluster 2024-01-24T03:05:52.213059+0000 mgr.smithi152.jkoscf (mgr.14182) 572 : cluster [DBG] pgmap v420: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:53 smithi195 bash[19846]: cluster 2024-01-24T03:05:52.213059+0000 mgr.smithi152.jkoscf (mgr.14182) 572 : cluster [DBG] pgmap v420: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:54.523 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:05:54.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:54 smithi152 bash[16344]: audit 2024-01-24T03:05:52.940635+0000 mgr.smithi152.jkoscf (mgr.14182) 573 : audit [DBG] from='client.14874 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:54.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:54 smithi195 bash[19846]: audit 2024-01-24T03:05:52.940635+0000 mgr.smithi152.jkoscf (mgr.14182) 573 : audit [DBG] from='client.14874 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:55.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:55 smithi152 bash[16344]: cluster 2024-01-24T03:05:54.214646+0000 mgr.smithi152.jkoscf (mgr.14182) 574 : cluster [DBG] pgmap v421: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:55.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:55 smithi195 bash[19846]: cluster 2024-01-24T03:05:54.214646+0000 mgr.smithi152.jkoscf (mgr.14182) 574 : cluster [DBG] pgmap v421: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:57.606 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:05:57.606 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:05:57.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:57 smithi152 bash[16344]: cluster 2024-01-24T03:05:56.216531+0000 mgr.smithi152.jkoscf (mgr.14182) 575 : cluster [DBG] pgmap v422: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:57.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:57 smithi195 bash[19846]: cluster 2024-01-24T03:05:56.216531+0000 mgr.smithi152.jkoscf (mgr.14182) 575 : cluster [DBG] pgmap v422: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:05:58.203 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:05:58.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:58 smithi152 bash[16344]: audit 2024-01-24T03:05:57.590102+0000 mgr.smithi152.jkoscf (mgr.14182) 576 : audit [DBG] from='client.14878 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:58.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:58 smithi195 bash[19846]: audit 2024-01-24T03:05:57.590102+0000 mgr.smithi152.jkoscf (mgr.14182) 576 : audit [DBG] from='client.14878 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:05:59.203 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:05:59.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:05:59 smithi152 bash[16344]: cluster 2024-01-24T03:05:58.217625+0000 mgr.smithi152.jkoscf (mgr.14182) 577 : cluster [DBG] pgmap v423: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:05:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:05:59 smithi195 bash[19846]: cluster 2024-01-24T03:05:58.217625+0000 mgr.smithi152.jkoscf (mgr.14182) 577 : cluster [DBG] pgmap v423: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:06:01.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:01 smithi152 bash[16344]: cluster 2024-01-24T03:06:00.219379+0000 mgr.smithi152.jkoscf (mgr.14182) 578 : cluster [DBG] pgmap v424: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:01 smithi195 bash[19846]: cluster 2024-01-24T03:06:00.219379+0000 mgr.smithi152.jkoscf (mgr.14182) 578 : cluster [DBG] pgmap v424: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:02.553 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:06:02.553 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:06:03.173 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:06:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:03 smithi152 bash[16344]: cluster 2024-01-24T03:06:02.220795+0000 mgr.smithi152.jkoscf (mgr.14182) 579 : cluster [DBG] pgmap v425: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:03.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:03 smithi152 bash[16344]: audit 2024-01-24T03:06:02.538316+0000 mgr.smithi152.jkoscf (mgr.14182) 580 : audit [DBG] from='client.14882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:03.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:03 smithi195 bash[19846]: cluster 2024-01-24T03:06:02.220795+0000 mgr.smithi152.jkoscf (mgr.14182) 579 : cluster [DBG] pgmap v425: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:03.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:03 smithi195 bash[19846]: audit 2024-01-24T03:06:02.538316+0000 mgr.smithi152.jkoscf (mgr.14182) 580 : audit [DBG] from='client.14882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:04.173 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:06:05.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:05 smithi152 bash[16344]: cluster 2024-01-24T03:06:04.222429+0000 mgr.smithi152.jkoscf (mgr.14182) 581 : cluster [DBG] pgmap v426: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:05.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:05 smithi195 bash[19846]: cluster 2024-01-24T03:06:04.222429+0000 mgr.smithi152.jkoscf (mgr.14182) 581 : cluster [DBG] pgmap v426: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:07.397 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:06:07.397 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:06:07.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:07 smithi152 bash[16344]: cluster 2024-01-24T03:06:06.223859+0000 mgr.smithi152.jkoscf (mgr.14182) 582 : cluster [DBG] pgmap v427: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:07.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:07 smithi195 bash[19846]: cluster 2024-01-24T03:06:06.223859+0000 mgr.smithi152.jkoscf (mgr.14182) 582 : cluster [DBG] pgmap v427: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:08.030 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:06:08.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:08 smithi152 bash[16344]: audit 2024-01-24T03:06:07.383140+0000 mgr.smithi152.jkoscf (mgr.14182) 583 : audit [DBG] from='client.14886 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:08 smithi195 bash[19846]: audit 2024-01-24T03:06:07.383140+0000 mgr.smithi152.jkoscf (mgr.14182) 583 : audit [DBG] from='client.14886 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:09.031 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:06:09.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:09 smithi152 bash[16344]: cluster 2024-01-24T03:06:08.225179+0000 mgr.smithi152.jkoscf (mgr.14182) 584 : cluster [DBG] pgmap v428: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:06:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:09 smithi195 bash[19846]: cluster 2024-01-24T03:06:08.225179+0000 mgr.smithi152.jkoscf (mgr.14182) 584 : cluster [DBG] pgmap v428: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:06:11.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:11 smithi152 bash[16344]: cluster 2024-01-24T03:06:10.226978+0000 mgr.smithi152.jkoscf (mgr.14182) 585 : cluster [DBG] pgmap v429: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:11.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:11 smithi195 bash[19846]: cluster 2024-01-24T03:06:10.226978+0000 mgr.smithi152.jkoscf (mgr.14182) 585 : cluster [DBG] pgmap v429: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:12.241 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:06:12.241 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:06:12.867 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:06:13.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:13 smithi152 bash[16344]: audit 2024-01-24T03:06:12.222843+0000 mgr.smithi152.jkoscf (mgr.14182) 586 : audit [DBG] from='client.14890 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:13.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:13 smithi152 bash[16344]: cluster 2024-01-24T03:06:12.228028+0000 mgr.smithi152.jkoscf (mgr.14182) 587 : cluster [DBG] pgmap v430: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:13.868 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:06:13.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:13 smithi195 bash[19846]: audit 2024-01-24T03:06:12.222843+0000 mgr.smithi152.jkoscf (mgr.14182) 586 : audit [DBG] from='client.14890 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:13.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:13 smithi195 bash[19846]: cluster 2024-01-24T03:06:12.228028+0000 mgr.smithi152.jkoscf (mgr.14182) 587 : cluster [DBG] pgmap v430: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:15.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:15 smithi152 bash[16344]: cluster 2024-01-24T03:06:14.229130+0000 mgr.smithi152.jkoscf (mgr.14182) 588 : cluster [DBG] pgmap v431: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:15.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:15 smithi195 bash[19846]: cluster 2024-01-24T03:06:14.229130+0000 mgr.smithi152.jkoscf (mgr.14182) 588 : cluster [DBG] pgmap v431: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:17.055 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:06:17.055 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:06:17.686 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:06:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:17 smithi195 bash[19846]: cluster 2024-01-24T03:06:16.230638+0000 mgr.smithi152.jkoscf (mgr.14182) 589 : cluster [DBG] pgmap v432: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:17 smithi152 bash[16344]: cluster 2024-01-24T03:06:16.230638+0000 mgr.smithi152.jkoscf (mgr.14182) 589 : cluster [DBG] pgmap v432: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:18.687 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:06:18.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:18 smithi195 bash[19846]: audit 2024-01-24T03:06:17.037518+0000 mgr.smithi152.jkoscf (mgr.14182) 590 : audit [DBG] from='client.14894 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:19.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:18 smithi152 bash[16344]: audit 2024-01-24T03:06:17.037518+0000 mgr.smithi152.jkoscf (mgr.14182) 590 : audit [DBG] from='client.14894 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:19.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:19 smithi195 bash[19846]: cluster 2024-01-24T03:06:18.232048+0000 mgr.smithi152.jkoscf (mgr.14182) 591 : cluster [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:06:19.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:19 smithi152 bash[16344]: cluster 2024-01-24T03:06:18.232048+0000 mgr.smithi152.jkoscf (mgr.14182) 591 : cluster [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:06:21.660 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:06:21.660 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:06:21.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:21 smithi195 bash[19846]: cluster 2024-01-24T03:06:20.233882+0000 mgr.smithi152.jkoscf (mgr.14182) 592 : cluster [DBG] pgmap v434: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:22.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:21 smithi152 bash[16344]: cluster 2024-01-24T03:06:20.233882+0000 mgr.smithi152.jkoscf (mgr.14182) 592 : cluster [DBG] pgmap v434: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:22.350 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:06:22.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:22 smithi195 bash[19846]: audit 2024-01-24T03:06:21.648300+0000 mgr.smithi152.jkoscf (mgr.14182) 593 : audit [DBG] from='client.14898 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:23.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:22 smithi152 bash[16344]: audit 2024-01-24T03:06:21.648300+0000 mgr.smithi152.jkoscf (mgr.14182) 593 : audit [DBG] from='client.14898 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:23.351 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:06:23.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:23 smithi195 bash[19846]: cluster 2024-01-24T03:06:22.235174+0000 mgr.smithi152.jkoscf (mgr.14182) 594 : cluster [DBG] pgmap v435: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:24.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:23 smithi152 bash[16344]: cluster 2024-01-24T03:06:22.235174+0000 mgr.smithi152.jkoscf (mgr.14182) 594 : cluster [DBG] pgmap v435: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:24.808 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.192283+0000 mon.smithi152 (mon.0) 776 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:06:24.808 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.499139+0000 mon.smithi152 (mon.0) 777 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.808 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.499608+0000 mon.smithi152 (mon.0) 778 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.808 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.500800+0000 mon.smithi152 (mon.0) 779 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.808 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.501486+0000 mon.smithi152 (mon.0) 780 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.809 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.502430+0000 mon.smithi152 (mon.0) 781 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.809 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.503244+0000 mon.smithi152 (mon.0) 782 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.809 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.504382+0000 mon.smithi152 (mon.0) 783 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.809 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.504651+0000 mon.smithi152 (mon.0) 784 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.809 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.512260+0000 mon.smithi152 (mon.0) 785 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:06:24.809 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.516960+0000 mon.smithi152 (mon.0) 786 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:06:24.809 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.518100+0000 mon.smithi152 (mon.0) 787 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:06:24.809 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.519078+0000 mon.smithi152 (mon.0) 788 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:06:24.809 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.525711+0000 mon.smithi152 (mon.0) 789 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:06:24.809 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.533144+0000 mon.smithi152 (mon.0) 790 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:06:24.809 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:24 smithi152 bash[16344]: audit 2024-01-24T03:06:24.549203+0000 mon.smithi152 (mon.0) 791 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:06:24.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.192283+0000 mon.smithi152 (mon.0) 776 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:06:24.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.499139+0000 mon.smithi152 (mon.0) 777 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.499608+0000 mon.smithi152 (mon.0) 778 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.500800+0000 mon.smithi152 (mon.0) 779 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.501486+0000 mon.smithi152 (mon.0) 780 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.502430+0000 mon.smithi152 (mon.0) 781 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.503244+0000 mon.smithi152 (mon.0) 782 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.504382+0000 mon.smithi152 (mon.0) 783 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.504651+0000 mon.smithi152 (mon.0) 784 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-01-24T03:06:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.512260+0000 mon.smithi152 (mon.0) 785 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:06:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.516960+0000 mon.smithi152 (mon.0) 786 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:06:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.518100+0000 mon.smithi152 (mon.0) 787 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:06:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.519078+0000 mon.smithi152 (mon.0) 788 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:06:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.525711+0000 mon.smithi152 (mon.0) 789 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:06:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.533144+0000 mon.smithi152 (mon.0) 790 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:06:24.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:24 smithi195 bash[19846]: audit 2024-01-24T03:06:24.549203+0000 mon.smithi152 (mon.0) 791 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:06:25.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:25 smithi152 bash[16344]: cluster 2024-01-24T03:06:24.236288+0000 mgr.smithi152.jkoscf (mgr.14182) 595 : cluster [DBG] pgmap v436: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:25.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:25 smithi152 bash[16344]: cephadm 2024-01-24T03:06:24.505501+0000 mgr.smithi152.jkoscf (mgr.14182) 596 : cephadm [INF] Adjusting osd_memory_target on smithi152 to 3017M 2024-01-24T03:06:25.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:25 smithi152 bash[16344]: cephadm 2024-01-24T03:06:24.505897+0000 mgr.smithi152.jkoscf (mgr.14182) 597 : cephadm [INF] Adjusting osd_memory_target on smithi195 to 3529M 2024-01-24T03:06:25.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:25 smithi152 bash[16344]: cluster 2024-01-24T03:06:24.526612+0000 mgr.smithi152.jkoscf (mgr.14182) 598 : cluster [DBG] pgmap v437: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:06:25.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:25 smithi152 bash[16344]: cephadm 2024-01-24T03:06:24.552772+0000 mgr.smithi152.jkoscf (mgr.14182) 599 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.pretkv on smithi195 2024-01-24T03:06:25.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:25 smithi152 bash[16344]: cluster 2024-01-24T03:06:24.615326+0000 mon.smithi152 (mon.0) 792 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:06:25.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:25 smithi152 bash[16344]: cluster 2024-01-24T03:06:24.615400+0000 mon.smithi152 (mon.0) 793 : cluster [INF] Cluster is now healthy 2024-01-24T03:06:25.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:25 smithi195 bash[19846]: cluster 2024-01-24T03:06:24.236288+0000 mgr.smithi152.jkoscf (mgr.14182) 595 : cluster [DBG] pgmap v436: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:25.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:25 smithi195 bash[19846]: cephadm 2024-01-24T03:06:24.505501+0000 mgr.smithi152.jkoscf (mgr.14182) 596 : cephadm [INF] Adjusting osd_memory_target on smithi152 to 3017M 2024-01-24T03:06:25.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:25 smithi195 bash[19846]: cephadm 2024-01-24T03:06:24.505897+0000 mgr.smithi152.jkoscf (mgr.14182) 597 : cephadm [INF] Adjusting osd_memory_target on smithi195 to 3529M 2024-01-24T03:06:25.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:25 smithi195 bash[19846]: cluster 2024-01-24T03:06:24.526612+0000 mgr.smithi152.jkoscf (mgr.14182) 598 : cluster [DBG] pgmap v437: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:06:25.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:25 smithi195 bash[19846]: cephadm 2024-01-24T03:06:24.552772+0000 mgr.smithi152.jkoscf (mgr.14182) 599 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.pretkv on smithi195 2024-01-24T03:06:25.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:25 smithi195 bash[19846]: cluster 2024-01-24T03:06:24.615326+0000 mon.smithi152 (mon.0) 792 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:06:25.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:25 smithi195 bash[19846]: cluster 2024-01-24T03:06:24.615400+0000 mon.smithi152 (mon.0) 793 : cluster [INF] Cluster is now healthy 2024-01-24T03:06:26.779 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:06:26.779 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:04:15.996949Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.mztfmu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:06:27.382 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:06:27.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:27 smithi195 bash[19846]: cluster 2024-01-24T03:06:26.527576+0000 mgr.smithi152.jkoscf (mgr.14182) 600 : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:06:28.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:27 smithi152 bash[16344]: cluster 2024-01-24T03:06:26.527576+0000 mgr.smithi152.jkoscf (mgr.14182) 600 : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:06:28.383 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:06:28.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:28 smithi152 bash[16344]: audit 2024-01-24T03:06:26.769219+0000 mgr.smithi152.jkoscf (mgr.14182) 601 : audit [DBG] from='client.14902 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:28.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:28 smithi152 bash[16344]: audit 2024-01-24T03:06:28.413892+0000 mon.smithi152 (mon.0) 794 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.pretkv"}]: dispatch 2024-01-24T03:06:28.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:28 smithi195 bash[19846]: audit 2024-01-24T03:06:26.769219+0000 mgr.smithi152.jkoscf (mgr.14182) 601 : audit [DBG] from='client.14902 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:28.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:28 smithi195 bash[19846]: audit 2024-01-24T03:06:28.413892+0000 mon.smithi152 (mon.0) 794 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.pretkv"}]: dispatch 2024-01-24T03:06:29.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: cephadm 2024-01-24T03:06:28.412488+0000 mgr.smithi152.jkoscf (mgr.14182) 602 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv 2024-01-24T03:06:29.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:06:29.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv 2024-01-24T03:06:29.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv 2024-01-24T03:06:29.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:06:29.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv 2024-01-24T03:06:29.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.pretkv ... 2024-01-24T03:06:29.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:29.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:06:29.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:06:29.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:06:29.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:29.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:06:29.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:06:29.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:06:29.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:06:29.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:06:29.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv 2024-01-24T03:06:29.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:06:29.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv 2024-01-24T03:06:29.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv 2024-01-24T03:06:29.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:06:29.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv 2024-01-24T03:06:29.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.pretkv ... 2024-01-24T03:06:29.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:29.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:06:29.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:06:29.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:06:29.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:29.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: cephadm 2024-01-24T03:06:28.413164+0000 mgr.smithi152.jkoscf (mgr.14182) 603 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.pretkv 2024-01-24T03:06:29.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: cephadm 2024-01-24T03:06:28.416370+0000 mgr.smithi152.jkoscf (mgr.14182) 604 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv 2024-01-24T03:06:29.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:06:29.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv 2024-01-24T03:06:29.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv 2024-01-24T03:06:29.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:06:29.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv 2024-01-24T03:06:29.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.pretkv ... 2024-01-24T03:06:29.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:29.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:06:29.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:06:29.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:06:29.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:29.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: cephadm 2024-01-24T03:06:28.420197+0000 mgr.smithi152.jkoscf (mgr.14182) 605 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.smkzev on smithi152 2024-01-24T03:06:29.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:29 smithi195 bash[19846]: cluster 2024-01-24T03:06:28.528285+0000 mgr.smithi152.jkoscf (mgr.14182) 606 : cluster [DBG] pgmap v439: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:06:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: cephadm 2024-01-24T03:06:28.412488+0000 mgr.smithi152.jkoscf (mgr.14182) 602 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv 2024-01-24T03:06:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:06:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv 2024-01-24T03:06:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv 2024-01-24T03:06:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:06:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv 2024-01-24T03:06:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.pretkv ... 2024-01-24T03:06:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:06:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:06:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:06:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:06:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:06:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:06:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:06:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:06:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv 2024-01-24T03:06:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:06:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv 2024-01-24T03:06:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv 2024-01-24T03:06:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:06:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv 2024-01-24T03:06:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.pretkv ... 2024-01-24T03:06:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:06:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:06:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:06:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: cephadm 2024-01-24T03:06:28.413164+0000 mgr.smithi152.jkoscf (mgr.14182) 603 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.pretkv 2024-01-24T03:06:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: cephadm 2024-01-24T03:06:28.416370+0000 mgr.smithi152.jkoscf (mgr.14182) 604 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv 2024-01-24T03:06:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:06:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv 2024-01-24T03:06:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv 2024-01-24T03:06:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:06:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv 2024-01-24T03:06:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.pretkv ... 2024-01-24T03:06:30.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:30.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:06:30.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:06:30.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:06:30.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:30.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: cephadm 2024-01-24T03:06:28.420197+0000 mgr.smithi152.jkoscf (mgr.14182) 605 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.smkzev on smithi152 2024-01-24T03:06:30.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:29 smithi152 bash[16344]: cluster 2024-01-24T03:06:28.528285+0000 mgr.smithi152.jkoscf (mgr.14182) 606 : cluster [DBG] pgmap v439: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:06:31.627 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:06:31.627 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:20.302557Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fzwaga on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fzwaga\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fzwaga\nDeploy daemon haproxy.nfs.foo.smithi195.fzwaga ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.180128Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.swftjg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-swftjg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.swftjg\nDeploy daemon haproxy.nfs.foo.smithi152.swftjg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:05:24.184459Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.jameab on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:06:31.903 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:31 smithi152 bash[16344]: cluster 2024-01-24T03:06:30.529880+0000 mgr.smithi152.jkoscf (mgr.14182) 607 : cluster [DBG] pgmap v440: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:06:31.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:31 smithi195 bash[19846]: cluster 2024-01-24T03:06:30.529880+0000 mgr.smithi152.jkoscf (mgr.14182) 607 : cluster [DBG] pgmap v440: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:06:32.297 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:06:32.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:32 smithi195 bash[19846]: audit 2024-01-24T03:06:31.612523+0000 mgr.smithi152.jkoscf (mgr.14182) 608 : audit [DBG] from='client.14906 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:32.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:32 smithi195 bash[19846]: audit 2024-01-24T03:06:32.411807+0000 mon.smithi152 (mon.0) 795 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.smkzev"}]: dispatch 2024-01-24T03:06:33.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:32 smithi152 bash[16344]: audit 2024-01-24T03:06:31.612523+0000 mgr.smithi152.jkoscf (mgr.14182) 608 : audit [DBG] from='client.14906 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:33.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:32 smithi152 bash[16344]: audit 2024-01-24T03:06:32.411807+0000 mon.smithi152 (mon.0) 795 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.smkzev"}]: dispatch 2024-01-24T03:06:33.298 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:06:33.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: cephadm 2024-01-24T03:06:32.410636+0000 mgr.smithi152.jkoscf (mgr.14182) 609 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev 2024-01-24T03:06:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:06:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev 2024-01-24T03:06:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev 2024-01-24T03:06:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:06:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev 2024-01-24T03:06:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.smkzev ... 2024-01-24T03:06:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:06:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:06:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.smkzev ... 2024-01-24T03:06:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: cephadm 2024-01-24T03:06:32.411115+0000 mgr.smithi152.jkoscf (mgr.14182) 610 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.smkzev 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: cephadm 2024-01-24T03:06:32.413502+0000 mgr.smithi152.jkoscf (mgr.14182) 611 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.smkzev ... 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:06:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:06:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:06:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: cephadm 2024-01-24T03:06:32.417823+0000 mgr.smithi152.jkoscf (mgr.14182) 612 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:06:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: cephadm 2024-01-24T03:06:32.420311+0000 mgr.smithi152.jkoscf (mgr.14182) 613 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:06:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: cluster 2024-01-24T03:06:32.421571+0000 mgr.smithi152.jkoscf (mgr.14182) 614 : cluster [DBG] pgmap v441: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:06:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:33 smithi195 bash[19846]: cluster 2024-01-24T03:06:32.647980+0000 mon.smithi152 (mon.0) 796 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:06:34.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: cephadm 2024-01-24T03:06:32.410636+0000 mgr.smithi152.jkoscf (mgr.14182) 609 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev 2024-01-24T03:06:34.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:06:34.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.smkzev ... 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:06:34.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.smkzev ... 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: cephadm 2024-01-24T03:06:32.411115+0000 mgr.smithi152.jkoscf (mgr.14182) 610 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.smkzev 2024-01-24T03:06:34.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: cephadm 2024-01-24T03:06:32.413502+0000 mgr.smithi152.jkoscf (mgr.14182) 611 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.smkzev ... 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: cephadm 2024-01-24T03:06:32.417823+0000 mgr.smithi152.jkoscf (mgr.14182) 612 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: cephadm 2024-01-24T03:06:32.420311+0000 mgr.smithi152.jkoscf (mgr.14182) 613 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:06:34.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: cluster 2024-01-24T03:06:32.421571+0000 mgr.smithi152.jkoscf (mgr.14182) 614 : cluster [DBG] pgmap v441: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:06:34.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:33 smithi152 bash[16344]: cluster 2024-01-24T03:06:32.647980+0000 mon.smithi152 (mon.0) 796 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:06:35.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:35 smithi152 bash[16344]: cluster 2024-01-24T03:06:34.422422+0000 mgr.smithi152.jkoscf (mgr.14182) 615 : cluster [DBG] pgmap v442: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:06:35.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:35 smithi195 bash[19846]: cluster 2024-01-24T03:06:34.422422+0000 mgr.smithi152.jkoscf (mgr.14182) 615 : cluster [DBG] pgmap v442: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:06:36.848 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:06:36.848 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:06:37.479 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:06:37.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:37 smithi152 bash[16344]: cluster 2024-01-24T03:06:36.423836+0000 mgr.smithi152.jkoscf (mgr.14182) 616 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:06:37.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:37 smithi152 bash[16344]: audit 2024-01-24T03:06:37.244779+0000 mon.smithi152 (mon.0) 797 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:06:37.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:37 smithi195 bash[19846]: cluster 2024-01-24T03:06:36.423836+0000 mgr.smithi152.jkoscf (mgr.14182) 616 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:06:37.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:37 smithi195 bash[19846]: audit 2024-01-24T03:06:37.244779+0000 mon.smithi152 (mon.0) 797 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:06:38.480 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:06:38.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:38 smithi152 bash[16344]: audit 2024-01-24T03:06:36.832133+0000 mgr.smithi152.jkoscf (mgr.14182) 617 : audit [DBG] from='client.14910 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:38.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:38 smithi195 bash[19846]: audit 2024-01-24T03:06:36.832133+0000 mgr.smithi152.jkoscf (mgr.14182) 617 : audit [DBG] from='client.14910 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:39.773 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:39 smithi152 bash[16344]: cluster 2024-01-24T03:06:38.425354+0000 mgr.smithi152.jkoscf (mgr.14182) 618 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2024-01-24T03:06:39.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:39 smithi195 bash[19846]: cluster 2024-01-24T03:06:38.425354+0000 mgr.smithi152.jkoscf (mgr.14182) 618 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2024-01-24T03:06:41.593 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:06:41.593 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:06:41.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:41 smithi195 bash[19846]: cluster 2024-01-24T03:06:40.427215+0000 mgr.smithi152.jkoscf (mgr.14182) 619 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:06:42.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:41 smithi152 bash[16344]: cluster 2024-01-24T03:06:40.427215+0000 mgr.smithi152.jkoscf (mgr.14182) 619 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:06:42.241 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:06:42.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:42 smithi195 bash[19846]: audit 2024-01-24T03:06:41.583129+0000 mgr.smithi152.jkoscf (mgr.14182) 620 : audit [DBG] from='client.14914 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:43.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:42 smithi152 bash[16344]: audit 2024-01-24T03:06:41.583129+0000 mgr.smithi152.jkoscf (mgr.14182) 620 : audit [DBG] from='client.14914 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:43.243 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:06:43.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:43 smithi195 bash[19846]: cluster 2024-01-24T03:06:42.429041+0000 mgr.smithi152.jkoscf (mgr.14182) 621 : cluster [DBG] pgmap v446: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:06:44.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:43 smithi152 bash[16344]: cluster 2024-01-24T03:06:42.429041+0000 mgr.smithi152.jkoscf (mgr.14182) 621 : cluster [DBG] pgmap v446: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:06:45.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:45 smithi195 bash[19846]: cluster 2024-01-24T03:06:44.430149+0000 mgr.smithi152.jkoscf (mgr.14182) 622 : cluster [DBG] pgmap v447: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:46.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:45 smithi152 bash[16344]: cluster 2024-01-24T03:06:44.430149+0000 mgr.smithi152.jkoscf (mgr.14182) 622 : cluster [DBG] pgmap v447: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:46.596 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:06:46.597 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:06:47.213 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:06:47.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:47 smithi195 bash[19846]: cluster 2024-01-24T03:06:46.432507+0000 mgr.smithi152.jkoscf (mgr.14182) 623 : cluster [DBG] pgmap v448: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:47.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:47 smithi195 bash[19846]: audit 2024-01-24T03:06:46.586723+0000 mgr.smithi152.jkoscf (mgr.14182) 624 : audit [DBG] from='client.14918 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:48.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:47 smithi152 bash[16344]: cluster 2024-01-24T03:06:46.432507+0000 mgr.smithi152.jkoscf (mgr.14182) 623 : cluster [DBG] pgmap v448: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:48.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:47 smithi152 bash[16344]: audit 2024-01-24T03:06:46.586723+0000 mgr.smithi152.jkoscf (mgr.14182) 624 : audit [DBG] from='client.14918 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:48.214 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:06:49.552 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:49 smithi152 bash[16344]: cluster 2024-01-24T03:06:48.434056+0000 mgr.smithi152.jkoscf (mgr.14182) 625 : cluster [DBG] pgmap v449: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:06:49.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:49 smithi195 bash[19846]: cluster 2024-01-24T03:06:48.434056+0000 mgr.smithi152.jkoscf (mgr.14182) 625 : cluster [DBG] pgmap v449: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:06:51.266 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:06:51.266 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:06:51.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:51 smithi152 bash[16344]: cluster 2024-01-24T03:06:50.435871+0000 mgr.smithi152.jkoscf (mgr.14182) 626 : cluster [DBG] pgmap v450: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:51.854 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:06:51.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:51 smithi195 bash[19846]: cluster 2024-01-24T03:06:50.435871+0000 mgr.smithi152.jkoscf (mgr.14182) 626 : cluster [DBG] pgmap v450: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:52.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:52 smithi152 bash[16344]: audit 2024-01-24T03:06:51.248858+0000 mgr.smithi152.jkoscf (mgr.14182) 627 : audit [DBG] from='client.14922 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:52.854 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:06:52.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:52 smithi195 bash[19846]: audit 2024-01-24T03:06:51.248858+0000 mgr.smithi152.jkoscf (mgr.14182) 627 : audit [DBG] from='client.14922 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:53.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:53 smithi152 bash[16344]: cluster 2024-01-24T03:06:52.437577+0000 mgr.smithi152.jkoscf (mgr.14182) 628 : cluster [DBG] pgmap v451: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:53 smithi195 bash[19846]: cluster 2024-01-24T03:06:52.437577+0000 mgr.smithi152.jkoscf (mgr.14182) 628 : cluster [DBG] pgmap v451: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:55.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:55 smithi152 bash[16344]: cluster 2024-01-24T03:06:54.438920+0000 mgr.smithi152.jkoscf (mgr.14182) 629 : cluster [DBG] pgmap v452: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:55.971 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:06:55.971 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:06:55.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:55 smithi195 bash[19846]: cluster 2024-01-24T03:06:54.438920+0000 mgr.smithi152.jkoscf (mgr.14182) 629 : cluster [DBG] pgmap v452: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:56.604 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:06:57.605 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:06:57.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:57 smithi152 bash[16344]: audit 2024-01-24T03:06:55.954154+0000 mgr.smithi152.jkoscf (mgr.14182) 630 : audit [DBG] from='client.14926 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:57.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:57 smithi152 bash[16344]: cluster 2024-01-24T03:06:56.440578+0000 mgr.smithi152.jkoscf (mgr.14182) 631 : cluster [DBG] pgmap v453: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:57.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:57 smithi195 bash[19846]: audit 2024-01-24T03:06:55.954154+0000 mgr.smithi152.jkoscf (mgr.14182) 630 : audit [DBG] from='client.14926 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:06:57.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:57 smithi195 bash[19846]: cluster 2024-01-24T03:06:56.440578+0000 mgr.smithi152.jkoscf (mgr.14182) 631 : cluster [DBG] pgmap v453: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:06:59.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:06:59 smithi195 bash[19846]: cluster 2024-01-24T03:06:58.441866+0000 mgr.smithi152.jkoscf (mgr.14182) 632 : cluster [DBG] pgmap v454: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:06:59.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:06:59 smithi152 bash[16344]: cluster 2024-01-24T03:06:58.441866+0000 mgr.smithi152.jkoscf (mgr.14182) 632 : cluster [DBG] pgmap v454: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:07:00.812 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:07:00.812 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:07:01.414 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:07:01.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:01 smithi152 bash[16344]: cluster 2024-01-24T03:07:00.442833+0000 mgr.smithi152.jkoscf (mgr.14182) 633 : cluster [DBG] pgmap v455: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:01 smithi195 bash[19846]: cluster 2024-01-24T03:07:00.442833+0000 mgr.smithi152.jkoscf (mgr.14182) 633 : cluster [DBG] pgmap v455: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:02.415 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:07:02.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:02 smithi152 bash[16344]: audit 2024-01-24T03:07:00.797392+0000 mgr.smithi152.jkoscf (mgr.14182) 634 : audit [DBG] from='client.14930 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:02.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:02 smithi195 bash[19846]: audit 2024-01-24T03:07:00.797392+0000 mgr.smithi152.jkoscf (mgr.14182) 634 : audit [DBG] from='client.14930 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:03.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:03 smithi152 bash[16344]: cluster 2024-01-24T03:07:02.444145+0000 mgr.smithi152.jkoscf (mgr.14182) 635 : cluster [DBG] pgmap v456: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:03.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:03 smithi195 bash[19846]: cluster 2024-01-24T03:07:02.444145+0000 mgr.smithi152.jkoscf (mgr.14182) 635 : cluster [DBG] pgmap v456: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:05.635 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:07:05.635 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:07:05.699 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:05 smithi152 bash[16344]: cluster 2024-01-24T03:07:04.445186+0000 mgr.smithi152.jkoscf (mgr.14182) 636 : cluster [DBG] pgmap v457: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:05.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:05 smithi195 bash[19846]: cluster 2024-01-24T03:07:04.445186+0000 mgr.smithi152.jkoscf (mgr.14182) 636 : cluster [DBG] pgmap v457: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:06.252 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:07:06.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:06 smithi152 bash[16344]: audit 2024-01-24T03:07:05.623924+0000 mgr.smithi152.jkoscf (mgr.14182) 637 : audit [DBG] from='client.14934 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:06 smithi195 bash[19846]: audit 2024-01-24T03:07:05.623924+0000 mgr.smithi152.jkoscf (mgr.14182) 637 : audit [DBG] from='client.14934 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:07.253 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:07:07.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:07 smithi152 bash[16344]: cluster 2024-01-24T03:07:06.446942+0000 mgr.smithi152.jkoscf (mgr.14182) 638 : cluster [DBG] pgmap v458: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:07.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:07 smithi195 bash[19846]: cluster 2024-01-24T03:07:06.446942+0000 mgr.smithi152.jkoscf (mgr.14182) 638 : cluster [DBG] pgmap v458: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:09.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:09 smithi195 bash[19846]: cluster 2024-01-24T03:07:08.448251+0000 mgr.smithi152.jkoscf (mgr.14182) 639 : cluster [DBG] pgmap v459: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:07:09.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:09 smithi152 bash[16344]: cluster 2024-01-24T03:07:08.448251+0000 mgr.smithi152.jkoscf (mgr.14182) 639 : cluster [DBG] pgmap v459: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:07:10.587 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:07:10.587 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:07:11.231 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:07:11.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:11 smithi152 bash[16344]: cluster 2024-01-24T03:07:10.449425+0000 mgr.smithi152.jkoscf (mgr.14182) 640 : cluster [DBG] pgmap v460: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:11.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:11 smithi152 bash[16344]: audit 2024-01-24T03:07:10.568933+0000 mgr.smithi152.jkoscf (mgr.14182) 641 : audit [DBG] from='client.14938 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:11.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:11 smithi195 bash[19846]: cluster 2024-01-24T03:07:10.449425+0000 mgr.smithi152.jkoscf (mgr.14182) 640 : cluster [DBG] pgmap v460: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:11.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:11 smithi195 bash[19846]: audit 2024-01-24T03:07:10.568933+0000 mgr.smithi152.jkoscf (mgr.14182) 641 : audit [DBG] from='client.14938 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:12.232 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:07:13.625 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:13 smithi152 bash[16344]: cluster 2024-01-24T03:07:12.450464+0000 mgr.smithi152.jkoscf (mgr.14182) 642 : cluster [DBG] pgmap v461: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:13.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:13 smithi195 bash[19846]: cluster 2024-01-24T03:07:12.450464+0000 mgr.smithi152.jkoscf (mgr.14182) 642 : cluster [DBG] pgmap v461: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:15.479 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:07:15.479 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:07:15.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:15 smithi152 bash[16344]: cluster 2024-01-24T03:07:14.451970+0000 mgr.smithi152.jkoscf (mgr.14182) 643 : cluster [DBG] pgmap v462: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:15.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:15 smithi195 bash[19846]: cluster 2024-01-24T03:07:14.451970+0000 mgr.smithi152.jkoscf (mgr.14182) 643 : cluster [DBG] pgmap v462: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:16.098 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:07:16.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:16 smithi152 bash[16344]: audit 2024-01-24T03:07:15.461298+0000 mgr.smithi152.jkoscf (mgr.14182) 644 : audit [DBG] from='client.14942 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:16.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:16 smithi195 bash[19846]: audit 2024-01-24T03:07:15.461298+0000 mgr.smithi152.jkoscf (mgr.14182) 644 : audit [DBG] from='client.14942 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:17.099 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:07:17.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:17 smithi152 bash[16344]: cluster 2024-01-24T03:07:16.453648+0000 mgr.smithi152.jkoscf (mgr.14182) 645 : cluster [DBG] pgmap v463: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:17 smithi195 bash[19846]: cluster 2024-01-24T03:07:16.453648+0000 mgr.smithi152.jkoscf (mgr.14182) 645 : cluster [DBG] pgmap v463: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:19.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:19 smithi195 bash[19846]: cluster 2024-01-24T03:07:18.454924+0000 mgr.smithi152.jkoscf (mgr.14182) 646 : cluster [DBG] pgmap v464: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:07:19.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:19 smithi152 bash[16344]: cluster 2024-01-24T03:07:18.454924+0000 mgr.smithi152.jkoscf (mgr.14182) 646 : cluster [DBG] pgmap v464: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:07:20.537 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:07:20.538 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:07:21.121 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:07:21.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:21 smithi152 bash[16344]: cluster 2024-01-24T03:07:20.456127+0000 mgr.smithi152.jkoscf (mgr.14182) 647 : cluster [DBG] pgmap v465: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:21.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:21 smithi152 bash[16344]: audit 2024-01-24T03:07:20.521780+0000 mgr.smithi152.jkoscf (mgr.14182) 648 : audit [DBG] from='client.14946 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:21.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:21 smithi195 bash[19846]: cluster 2024-01-24T03:07:20.456127+0000 mgr.smithi152.jkoscf (mgr.14182) 647 : cluster [DBG] pgmap v465: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:21.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:21 smithi195 bash[19846]: audit 2024-01-24T03:07:20.521780+0000 mgr.smithi152.jkoscf (mgr.14182) 648 : audit [DBG] from='client.14946 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:22.122 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:07:23.577 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:23 smithi152 bash[16344]: cluster 2024-01-24T03:07:22.457936+0000 mgr.smithi152.jkoscf (mgr.14182) 649 : cluster [DBG] pgmap v466: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:23.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:23 smithi195 bash[19846]: cluster 2024-01-24T03:07:22.457936+0000 mgr.smithi152.jkoscf (mgr.14182) 649 : cluster [DBG] pgmap v466: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:25.448 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:07:25.448 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:07:25.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:25 smithi152 bash[16344]: cluster 2024-01-24T03:07:24.459555+0000 mgr.smithi152.jkoscf (mgr.14182) 650 : cluster [DBG] pgmap v467: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:25.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:25 smithi195 bash[19846]: cluster 2024-01-24T03:07:24.459555+0000 mgr.smithi152.jkoscf (mgr.14182) 650 : cluster [DBG] pgmap v467: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:26.112 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:07:26.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:26 smithi152 bash[16344]: audit 2024-01-24T03:07:25.437778+0000 mgr.smithi152.jkoscf (mgr.14182) 651 : audit [DBG] from='client.14950 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:26.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:26 smithi195 bash[19846]: audit 2024-01-24T03:07:25.437778+0000 mgr.smithi152.jkoscf (mgr.14182) 651 : audit [DBG] from='client.14950 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:27.113 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:07:27.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:27 smithi152 bash[16344]: cluster 2024-01-24T03:07:26.460940+0000 mgr.smithi152.jkoscf (mgr.14182) 652 : cluster [DBG] pgmap v468: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:27.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:27 smithi195 bash[19846]: cluster 2024-01-24T03:07:26.460940+0000 mgr.smithi152.jkoscf (mgr.14182) 652 : cluster [DBG] pgmap v468: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:29.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:29 smithi195 bash[19846]: cluster 2024-01-24T03:07:28.461877+0000 mgr.smithi152.jkoscf (mgr.14182) 653 : cluster [DBG] pgmap v469: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:07:29.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:29 smithi152 bash[16344]: cluster 2024-01-24T03:07:28.461877+0000 mgr.smithi152.jkoscf (mgr.14182) 653 : cluster [DBG] pgmap v469: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:07:30.457 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:07:30.458 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:07:31.116 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:07:31.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:31 smithi152 bash[16344]: audit 2024-01-24T03:07:30.441280+0000 mgr.smithi152.jkoscf (mgr.14182) 654 : audit [DBG] from='client.14954 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:31.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:31 smithi152 bash[16344]: cluster 2024-01-24T03:07:30.463747+0000 mgr.smithi152.jkoscf (mgr.14182) 655 : cluster [DBG] pgmap v470: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:31.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:31 smithi195 bash[19846]: audit 2024-01-24T03:07:30.441280+0000 mgr.smithi152.jkoscf (mgr.14182) 654 : audit [DBG] from='client.14954 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:31.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:31 smithi195 bash[19846]: cluster 2024-01-24T03:07:30.463747+0000 mgr.smithi152.jkoscf (mgr.14182) 655 : cluster [DBG] pgmap v470: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:32.117 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:07:32.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:32 smithi152 bash[16344]: audit 2024-01-24T03:07:32.425243+0000 mon.smithi152 (mon.0) 798 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:07:32.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:32 smithi195 bash[19846]: audit 2024-01-24T03:07:32.425243+0000 mon.smithi152 (mon.0) 798 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:07:33.682 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:33 smithi152 bash[16344]: cluster 2024-01-24T03:07:32.465469+0000 mgr.smithi152.jkoscf (mgr.14182) 656 : cluster [DBG] pgmap v471: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:33.683 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:33 smithi152 bash[16344]: audit 2024-01-24T03:07:32.751532+0000 mon.smithi152 (mon.0) 799 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:07:33.683 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:33 smithi152 bash[16344]: audit 2024-01-24T03:07:32.753046+0000 mon.smithi152 (mon.0) 800 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:07:33.683 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:33 smithi152 bash[16344]: audit 2024-01-24T03:07:32.762954+0000 mon.smithi152 (mon.0) 801 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:07:33.683 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:33 smithi152 bash[16344]: cluster 2024-01-24T03:07:32.763795+0000 mgr.smithi152.jkoscf (mgr.14182) 657 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:07:33.683 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:33 smithi152 bash[16344]: audit 2024-01-24T03:07:32.770586+0000 mon.smithi152 (mon.0) 802 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:07:33.683 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:33 smithi152 bash[16344]: audit 2024-01-24T03:07:32.785817+0000 mon.smithi152 (mon.0) 803 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:07:33.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:33 smithi195 bash[19846]: cluster 2024-01-24T03:07:32.465469+0000 mgr.smithi152.jkoscf (mgr.14182) 656 : cluster [DBG] pgmap v471: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:33.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:33 smithi195 bash[19846]: audit 2024-01-24T03:07:32.751532+0000 mon.smithi152 (mon.0) 799 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:07:33.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:33 smithi195 bash[19846]: audit 2024-01-24T03:07:32.753046+0000 mon.smithi152 (mon.0) 800 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:07:33.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:33 smithi195 bash[19846]: audit 2024-01-24T03:07:32.762954+0000 mon.smithi152 (mon.0) 801 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:07:33.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:33 smithi195 bash[19846]: cluster 2024-01-24T03:07:32.763795+0000 mgr.smithi152.jkoscf (mgr.14182) 657 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:07:33.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:33 smithi195 bash[19846]: audit 2024-01-24T03:07:32.770586+0000 mon.smithi152 (mon.0) 802 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:07:33.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:33 smithi195 bash[19846]: audit 2024-01-24T03:07:32.785817+0000 mon.smithi152 (mon.0) 803 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:07:34.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:34 smithi152 bash[16344]: cephadm 2024-01-24T03:07:32.789963+0000 mgr.smithi152.jkoscf (mgr.14182) 658 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.lkpogf on smithi195 2024-01-24T03:07:34.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:34 smithi152 bash[16344]: cluster 2024-01-24T03:07:33.758504+0000 mon.smithi152 (mon.0) 804 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:07:34.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:34 smithi152 bash[16344]: cluster 2024-01-24T03:07:33.758547+0000 mon.smithi152 (mon.0) 805 : cluster [INF] Cluster is now healthy 2024-01-24T03:07:34.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:34 smithi195 bash[19846]: cephadm 2024-01-24T03:07:32.789963+0000 mgr.smithi152.jkoscf (mgr.14182) 658 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.lkpogf on smithi195 2024-01-24T03:07:34.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:34 smithi195 bash[19846]: cluster 2024-01-24T03:07:33.758504+0000 mon.smithi152 (mon.0) 804 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:07:34.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:34 smithi195 bash[19846]: cluster 2024-01-24T03:07:33.758547+0000 mon.smithi152 (mon.0) 805 : cluster [INF] Cluster is now healthy 2024-01-24T03:07:35.390 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:07:35.390 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:05:24.188620Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ycmixu on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:07:35.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:35 smithi152 bash[16344]: cluster 2024-01-24T03:07:34.765310+0000 mgr.smithi152.jkoscf (mgr.14182) 659 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:07:35.987 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:07:35.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:35 smithi195 bash[19846]: cluster 2024-01-24T03:07:34.765310+0000 mgr.smithi152.jkoscf (mgr.14182) 659 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:07:36.631 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:36 smithi195 bash[19846]: audit 2024-01-24T03:07:35.377152+0000 mgr.smithi152.jkoscf (mgr.14182) 660 : audit [DBG] from='client.14958 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:36.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:36 smithi152 bash[16344]: audit 2024-01-24T03:07:35.377152+0000 mgr.smithi152.jkoscf (mgr.14182) 660 : audit [DBG] from='client.14958 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:36.988 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:07:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: cephadm 2024-01-24T03:07:36.699686+0000 mgr.smithi152.jkoscf (mgr.14182) 661 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf 2024-01-24T03:07:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:07:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf 2024-01-24T03:07:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:07:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.lkpogf ... 2024-01-24T03:07:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:07:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:07:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.lkpogf ... 2024-01-24T03:07:37.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: cephadm 2024-01-24T03:07:36.700210+0000 mgr.smithi152.jkoscf (mgr.14182) 662 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: audit 2024-01-24T03:07:36.700835+0000 mon.smithi152 (mon.0) 806 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.lkpogf"}]: dispatch 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: cephadm 2024-01-24T03:07:36.702648+0000 mgr.smithi152.jkoscf (mgr.14182) 663 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.lkpogf ... 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:37.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:07:37.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:07:37.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:07:37.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:37.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: cephadm 2024-01-24T03:07:36.707445+0000 mgr.smithi152.jkoscf (mgr.14182) 664 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.dozbkg on smithi152 2024-01-24T03:07:37.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:37 smithi152 bash[16344]: cluster 2024-01-24T03:07:36.766642+0000 mgr.smithi152.jkoscf (mgr.14182) 665 : cluster [DBG] pgmap v474: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2024-01-24T03:07:37.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: cephadm 2024-01-24T03:07:36.699686+0000 mgr.smithi152.jkoscf (mgr.14182) 661 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.lkpogf ... 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:07:37.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:07:37.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:07:37.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:07:37.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf 2024-01-24T03:07:37.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:07:37.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf 2024-01-24T03:07:37.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:07:37.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.lkpogf ... 2024-01-24T03:07:37.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:37.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: cephadm 2024-01-24T03:07:36.700210+0000 mgr.smithi152.jkoscf (mgr.14182) 662 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: audit 2024-01-24T03:07:36.700835+0000 mon.smithi152 (mon.0) 806 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.lkpogf"}]: dispatch 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: cephadm 2024-01-24T03:07:36.702648+0000 mgr.smithi152.jkoscf (mgr.14182) 663 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.lkpogf ... 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:37.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:07:37.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:07:37.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:07:37.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:37.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: cephadm 2024-01-24T03:07:36.707445+0000 mgr.smithi152.jkoscf (mgr.14182) 664 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.dozbkg on smithi152 2024-01-24T03:07:37.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:37 smithi195 bash[19846]: cluster 2024-01-24T03:07:36.766642+0000 mgr.smithi152.jkoscf (mgr.14182) 665 : cluster [DBG] pgmap v474: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2024-01-24T03:07:39.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:39 smithi195 bash[19846]: cluster 2024-01-24T03:07:38.767826+0000 mgr.smithi152.jkoscf (mgr.14182) 666 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:07:39.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:39 smithi195 bash[19846]: audit 2024-01-24T03:07:39.283972+0000 mon.smithi152 (mon.0) 807 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:07:39.797 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:39 smithi152 bash[16344]: cluster 2024-01-24T03:07:38.767826+0000 mgr.smithi152.jkoscf (mgr.14182) 666 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:07:39.797 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:39 smithi152 bash[16344]: audit 2024-01-24T03:07:39.283972+0000 mon.smithi152 (mon.0) 807 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:07:40.227 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:07:40.227 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:28.415929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.pretkv on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-pretkv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.pretkv\nDeploy daemon haproxy.nfs.foo.smithi195.pretkv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.413225Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.smkzev on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-smkzev\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.smkzev\nDeploy daemon haproxy.nfs.foo.smithi152.smkzev ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:06:32.417596Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ptcjal on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:07:40.985 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:40 smithi152 bash[16344]: audit 2024-01-24T03:07:40.216420+0000 mgr.smithi152.jkoscf (mgr.14182) 667 : audit [DBG] from='client.14962 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:40.985 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:40 smithi152 bash[16344]: cluster 2024-01-24T03:07:40.769531+0000 mgr.smithi152.jkoscf (mgr.14182) 668 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:07:40.985 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:40 smithi152 bash[16344]: audit 2024-01-24T03:07:40.789070+0000 mon.smithi152 (mon.0) 808 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.dozbkg"}]: dispatch 2024-01-24T03:07:40.985 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:40 smithi152 bash[16344]: cluster 2024-01-24T03:07:40.821779+0000 mon.smithi152 (mon.0) 809 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:07:40.986 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:07:41.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:40 smithi195 bash[19846]: audit 2024-01-24T03:07:40.216420+0000 mgr.smithi152.jkoscf (mgr.14182) 667 : audit [DBG] from='client.14962 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:41.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:40 smithi195 bash[19846]: cluster 2024-01-24T03:07:40.769531+0000 mgr.smithi152.jkoscf (mgr.14182) 668 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:07:41.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:40 smithi195 bash[19846]: audit 2024-01-24T03:07:40.789070+0000 mon.smithi152 (mon.0) 808 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.dozbkg"}]: dispatch 2024-01-24T03:07:41.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:40 smithi195 bash[19846]: cluster 2024-01-24T03:07:40.821779+0000 mon.smithi152 (mon.0) 809 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:07:41.987 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:07:42.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: cephadm 2024-01-24T03:07:40.787901+0000 mgr.smithi152.jkoscf (mgr.14182) 669 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg 2024-01-24T03:07:42.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:07:42.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg 2024-01-24T03:07:42.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:07:42.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.dozbkg ... 2024-01-24T03:07:42.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:42.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:07:42.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:07:42.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:07:42.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:42.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.dozbkg ... 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:07:42.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:07:42.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:07:42.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:42.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: cephadm 2024-01-24T03:07:40.788496+0000 mgr.smithi152.jkoscf (mgr.14182) 670 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: cephadm 2024-01-24T03:07:40.790702+0000 mgr.smithi152.jkoscf (mgr.14182) 671 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg 2024-01-24T03:07:42.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:07:42.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg 2024-01-24T03:07:42.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:07:42.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.dozbkg ... 2024-01-24T03:07:42.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:42.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:07:42.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:07:42.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:07:42.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:42.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: cephadm 2024-01-24T03:07:40.796126+0000 mgr.smithi152.jkoscf (mgr.14182) 672 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:07:42.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: cephadm 2024-01-24T03:07:40.799038+0000 mgr.smithi152.jkoscf (mgr.14182) 673 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:07:42.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:41 smithi195 bash[19846]: cluster 2024-01-24T03:07:40.800143+0000 mgr.smithi152.jkoscf (mgr.14182) 674 : cluster [DBG] pgmap v477: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 122 B/s rd, 0 op/s 2024-01-24T03:07:42.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: cephadm 2024-01-24T03:07:40.787901+0000 mgr.smithi152.jkoscf (mgr.14182) 669 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg 2024-01-24T03:07:42.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:07:42.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg 2024-01-24T03:07:42.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:07:42.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.dozbkg ... 2024-01-24T03:07:42.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:42.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:07:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:07:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:07:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:07:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:07:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:07:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:07:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:07:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg 2024-01-24T03:07:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:07:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg 2024-01-24T03:07:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.dozbkg ... 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: cephadm 2024-01-24T03:07:40.788496+0000 mgr.smithi152.jkoscf (mgr.14182) 670 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: cephadm 2024-01-24T03:07:40.790702+0000 mgr.smithi152.jkoscf (mgr.14182) 671 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:07:42.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg 2024-01-24T03:07:42.338 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.dozbkg ... 2024-01-24T03:07:42.338 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:42.338 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:07:42.338 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:07:42.338 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:07:42.338 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:07:42.338 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: cephadm 2024-01-24T03:07:40.796126+0000 mgr.smithi152.jkoscf (mgr.14182) 672 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:07:42.338 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: cephadm 2024-01-24T03:07:40.799038+0000 mgr.smithi152.jkoscf (mgr.14182) 673 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:07:42.338 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:41 smithi152 bash[16344]: cluster 2024-01-24T03:07:40.800143+0000 mgr.smithi152.jkoscf (mgr.14182) 674 : cluster [DBG] pgmap v477: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 122 B/s rd, 0 op/s 2024-01-24T03:07:43.379 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:43 smithi152 bash[16344]: audit 2024-01-24T03:07:42.299731+0000 mon.smithi152 (mon.0) 810 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:07:43.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:43 smithi195 bash[19846]: audit 2024-01-24T03:07:42.299731+0000 mon.smithi152 (mon.0) 810 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:07:44.675 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:44 smithi152 bash[16344]: cluster 2024-01-24T03:07:42.801528+0000 mgr.smithi152.jkoscf (mgr.14182) 675 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:07:44.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:44 smithi195 bash[19846]: cluster 2024-01-24T03:07:42.801528+0000 mgr.smithi152.jkoscf (mgr.14182) 675 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:07:45.037 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:07:45.037 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:07:45.695 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:07:46.697 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:07:46.708 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:46 smithi152 bash[16344]: cluster 2024-01-24T03:07:44.803194+0000 mgr.smithi152.jkoscf (mgr.14182) 676 : cluster [DBG] pgmap v479: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:07:46.708 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:46 smithi152 bash[16344]: audit 2024-01-24T03:07:45.018981+0000 mgr.smithi152.jkoscf (mgr.14182) 677 : audit [DBG] from='client.14966 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:46.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:46 smithi195 bash[19846]: cluster 2024-01-24T03:07:44.803194+0000 mgr.smithi152.jkoscf (mgr.14182) 676 : cluster [DBG] pgmap v479: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:07:46.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:46 smithi195 bash[19846]: audit 2024-01-24T03:07:45.018981+0000 mgr.smithi152.jkoscf (mgr.14182) 677 : audit [DBG] from='client.14966 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:48.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:48 smithi152 bash[16344]: cluster 2024-01-24T03:07:46.805027+0000 mgr.smithi152.jkoscf (mgr.14182) 678 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:07:48.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:48 smithi195 bash[19846]: cluster 2024-01-24T03:07:46.805027+0000 mgr.smithi152.jkoscf (mgr.14182) 678 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:07:50.052 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:07:50.053 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:07:50.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:50 smithi195 bash[19846]: cluster 2024-01-24T03:07:48.806626+0000 mgr.smithi152.jkoscf (mgr.14182) 679 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:07:50.640 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:50 smithi152 bash[16344]: cluster 2024-01-24T03:07:48.806626+0000 mgr.smithi152.jkoscf (mgr.14182) 679 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:07:50.641 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:07:51.642 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:07:51.655 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:51 smithi152 bash[16344]: audit 2024-01-24T03:07:50.034555+0000 mgr.smithi152.jkoscf (mgr.14182) 680 : audit [DBG] from='client.14970 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:51.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:51 smithi195 bash[19846]: audit 2024-01-24T03:07:50.034555+0000 mgr.smithi152.jkoscf (mgr.14182) 680 : audit [DBG] from='client.14970 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:52.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:52 smithi195 bash[19846]: cluster 2024-01-24T03:07:50.808344+0000 mgr.smithi152.jkoscf (mgr.14182) 681 : cluster [DBG] pgmap v482: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:07:52.783 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:52 smithi152 bash[16344]: cluster 2024-01-24T03:07:50.808344+0000 mgr.smithi152.jkoscf (mgr.14182) 681 : cluster [DBG] pgmap v482: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:07:54.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:54 smithi195 bash[19846]: cluster 2024-01-24T03:07:52.809488+0000 mgr.smithi152.jkoscf (mgr.14182) 682 : cluster [DBG] pgmap v483: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:54.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:54 smithi195 bash[19846]: audit 2024-01-24T03:07:54.284855+0000 mon.smithi152 (mon.0) 811 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:07:54.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:54 smithi152 bash[16344]: cluster 2024-01-24T03:07:52.809488+0000 mgr.smithi152.jkoscf (mgr.14182) 682 : cluster [DBG] pgmap v483: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:54.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:54 smithi152 bash[16344]: audit 2024-01-24T03:07:54.284855+0000 mon.smithi152 (mon.0) 811 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:07:54.852 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:07:54.852 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:07:55.508 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:07:56.508 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:07:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:56 smithi195 bash[19846]: cluster 2024-01-24T03:07:54.811138+0000 mgr.smithi152.jkoscf (mgr.14182) 683 : cluster [DBG] pgmap v484: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:56 smithi195 bash[19846]: audit 2024-01-24T03:07:54.834845+0000 mgr.smithi152.jkoscf (mgr.14182) 684 : audit [DBG] from='client.14974 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:56.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:56 smithi152 bash[16344]: cluster 2024-01-24T03:07:54.811138+0000 mgr.smithi152.jkoscf (mgr.14182) 683 : cluster [DBG] pgmap v484: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:07:56.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:56 smithi152 bash[16344]: audit 2024-01-24T03:07:54.834845+0000 mgr.smithi152.jkoscf (mgr.14182) 684 : audit [DBG] from='client.14974 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:07:58.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:07:58 smithi195 bash[19846]: cluster 2024-01-24T03:07:56.812853+0000 mgr.smithi152.jkoscf (mgr.14182) 685 : cluster [DBG] pgmap v485: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:07:58.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:07:58 smithi152 bash[16344]: cluster 2024-01-24T03:07:56.812853+0000 mgr.smithi152.jkoscf (mgr.14182) 685 : cluster [DBG] pgmap v485: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:07:59.744 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:07:59.744 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:08:00.337 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:08:00.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:00 smithi195 bash[19846]: cluster 2024-01-24T03:07:58.814400+0000 mgr.smithi152.jkoscf (mgr.14182) 686 : cluster [DBG] pgmap v486: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:00.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:00 smithi195 bash[19846]: audit 2024-01-24T03:07:59.728665+0000 mgr.smithi152.jkoscf (mgr.14182) 687 : audit [DBG] from='client.14978 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:00.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:00 smithi152 bash[16344]: cluster 2024-01-24T03:07:58.814400+0000 mgr.smithi152.jkoscf (mgr.14182) 686 : cluster [DBG] pgmap v486: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:00.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:00 smithi152 bash[16344]: audit 2024-01-24T03:07:59.728665+0000 mgr.smithi152.jkoscf (mgr.14182) 687 : audit [DBG] from='client.14978 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:01.338 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:08:02.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:02 smithi195 bash[19846]: cluster 2024-01-24T03:08:00.816075+0000 mgr.smithi152.jkoscf (mgr.14182) 688 : cluster [DBG] pgmap v487: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:02.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:02 smithi152 bash[16344]: cluster 2024-01-24T03:08:00.816075+0000 mgr.smithi152.jkoscf (mgr.14182) 688 : cluster [DBG] pgmap v487: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:04.608 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:08:04.608 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:08:04.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:04 smithi195 bash[19846]: cluster 2024-01-24T03:08:02.817360+0000 mgr.smithi152.jkoscf (mgr.14182) 689 : cluster [DBG] pgmap v488: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:04.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:04 smithi152 bash[16344]: cluster 2024-01-24T03:08:02.817360+0000 mgr.smithi152.jkoscf (mgr.14182) 689 : cluster [DBG] pgmap v488: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:05.238 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:08:05.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:05 smithi152 bash[16344]: audit 2024-01-24T03:08:04.590316+0000 mgr.smithi152.jkoscf (mgr.14182) 690 : audit [DBG] from='client.14982 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:05.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:05 smithi195 bash[19846]: audit 2024-01-24T03:08:04.590316+0000 mgr.smithi152.jkoscf (mgr.14182) 690 : audit [DBG] from='client.14982 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:06.290 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:08:06.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:06 smithi152 bash[16344]: cluster 2024-01-24T03:08:04.819191+0000 mgr.smithi152.jkoscf (mgr.14182) 691 : cluster [DBG] pgmap v489: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:06.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:06 smithi195 bash[19846]: cluster 2024-01-24T03:08:04.819191+0000 mgr.smithi152.jkoscf (mgr.14182) 691 : cluster [DBG] pgmap v489: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:08.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:08 smithi195 bash[19846]: cluster 2024-01-24T03:08:06.820959+0000 mgr.smithi152.jkoscf (mgr.14182) 692 : cluster [DBG] pgmap v490: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:08:08.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:08 smithi152 bash[16344]: cluster 2024-01-24T03:08:06.820959+0000 mgr.smithi152.jkoscf (mgr.14182) 692 : cluster [DBG] pgmap v490: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:08:09.636 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:08:09.636 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:08:10.240 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:08:10.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:10 smithi152 bash[16344]: cluster 2024-01-24T03:08:08.822509+0000 mgr.smithi152.jkoscf (mgr.14182) 693 : cluster [DBG] pgmap v491: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:10.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:10 smithi152 bash[16344]: audit 2024-01-24T03:08:09.621407+0000 mgr.smithi152.jkoscf (mgr.14182) 694 : audit [DBG] from='client.14986 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:10.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:10 smithi195 bash[19846]: cluster 2024-01-24T03:08:08.822509+0000 mgr.smithi152.jkoscf (mgr.14182) 693 : cluster [DBG] pgmap v491: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:10.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:10 smithi195 bash[19846]: audit 2024-01-24T03:08:09.621407+0000 mgr.smithi152.jkoscf (mgr.14182) 694 : audit [DBG] from='client.14986 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:11.241 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:08:12.640 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:12 smithi152 bash[16344]: cluster 2024-01-24T03:08:10.824186+0000 mgr.smithi152.jkoscf (mgr.14182) 695 : cluster [DBG] pgmap v492: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:12.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:12 smithi195 bash[19846]: cluster 2024-01-24T03:08:10.824186+0000 mgr.smithi152.jkoscf (mgr.14182) 695 : cluster [DBG] pgmap v492: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:14.441 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:08:14.441 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:08:14.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:14 smithi195 bash[19846]: cluster 2024-01-24T03:08:12.825611+0000 mgr.smithi152.jkoscf (mgr.14182) 696 : cluster [DBG] pgmap v493: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:14.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:14 smithi152 bash[16344]: cluster 2024-01-24T03:08:12.825611+0000 mgr.smithi152.jkoscf (mgr.14182) 696 : cluster [DBG] pgmap v493: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:15.070 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:08:15.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:15 smithi195 bash[19846]: audit 2024-01-24T03:08:14.422307+0000 mgr.smithi152.jkoscf (mgr.14182) 697 : audit [DBG] from='client.14990 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:15.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:15 smithi152 bash[16344]: audit 2024-01-24T03:08:14.422307+0000 mgr.smithi152.jkoscf (mgr.14182) 697 : audit [DBG] from='client.14990 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:16.071 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:08:16.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:16 smithi195 bash[19846]: cluster 2024-01-24T03:08:14.827445+0000 mgr.smithi152.jkoscf (mgr.14182) 698 : cluster [DBG] pgmap v494: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:16.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:16 smithi152 bash[16344]: cluster 2024-01-24T03:08:14.827445+0000 mgr.smithi152.jkoscf (mgr.14182) 698 : cluster [DBG] pgmap v494: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:18.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:18 smithi195 bash[19846]: cluster 2024-01-24T03:08:16.829211+0000 mgr.smithi152.jkoscf (mgr.14182) 699 : cluster [DBG] pgmap v495: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:08:18.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:18 smithi152 bash[16344]: cluster 2024-01-24T03:08:16.829211+0000 mgr.smithi152.jkoscf (mgr.14182) 699 : cluster [DBG] pgmap v495: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:08:19.303 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:08:19.303 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:08:19.927 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:08:20.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:20 smithi152 bash[16344]: cluster 2024-01-24T03:08:18.830125+0000 mgr.smithi152.jkoscf (mgr.14182) 700 : cluster [DBG] pgmap v496: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:20.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:20 smithi152 bash[16344]: audit 2024-01-24T03:08:19.287276+0000 mgr.smithi152.jkoscf (mgr.14182) 701 : audit [DBG] from='client.14994 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:20.928 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:08:20.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:20 smithi195 bash[19846]: cluster 2024-01-24T03:08:18.830125+0000 mgr.smithi152.jkoscf (mgr.14182) 700 : cluster [DBG] pgmap v496: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:20.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:20 smithi195 bash[19846]: audit 2024-01-24T03:08:19.287276+0000 mgr.smithi152.jkoscf (mgr.14182) 701 : audit [DBG] from='client.14994 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:22.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:22 smithi152 bash[16344]: cluster 2024-01-24T03:08:20.831798+0000 mgr.smithi152.jkoscf (mgr.14182) 702 : cluster [DBG] pgmap v497: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:22.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:22 smithi195 bash[19846]: cluster 2024-01-24T03:08:20.831798+0000 mgr.smithi152.jkoscf (mgr.14182) 702 : cluster [DBG] pgmap v497: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:24.103 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:08:24.103 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:08:24.702 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:08:24.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:24 smithi152 bash[16344]: cluster 2024-01-24T03:08:22.833063+0000 mgr.smithi152.jkoscf (mgr.14182) 703 : cluster [DBG] pgmap v498: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:24.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:24 smithi195 bash[19846]: cluster 2024-01-24T03:08:22.833063+0000 mgr.smithi152.jkoscf (mgr.14182) 703 : cluster [DBG] pgmap v498: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:25.704 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:08:25.716 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:25 smithi152 bash[16344]: audit 2024-01-24T03:08:24.084779+0000 mgr.smithi152.jkoscf (mgr.14182) 704 : audit [DBG] from='client.14998 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:25.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:25 smithi195 bash[19846]: audit 2024-01-24T03:08:24.084779+0000 mgr.smithi152.jkoscf (mgr.14182) 704 : audit [DBG] from='client.14998 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:26.812 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:26 smithi152 bash[16344]: cluster 2024-01-24T03:08:24.834822+0000 mgr.smithi152.jkoscf (mgr.14182) 705 : cluster [DBG] pgmap v499: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:26.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:26 smithi195 bash[19846]: cluster 2024-01-24T03:08:24.834822+0000 mgr.smithi152.jkoscf (mgr.14182) 705 : cluster [DBG] pgmap v499: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:28.813 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:08:28.813 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:08:28.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:28 smithi152 bash[16344]: cluster 2024-01-24T03:08:26.836330+0000 mgr.smithi152.jkoscf (mgr.14182) 706 : cluster [DBG] pgmap v500: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:08:28.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:28 smithi195 bash[19846]: cluster 2024-01-24T03:08:26.836330+0000 mgr.smithi152.jkoscf (mgr.14182) 706 : cluster [DBG] pgmap v500: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:08:29.408 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:08:30.410 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:08:30.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:30 smithi152 bash[16344]: audit 2024-01-24T03:08:28.802335+0000 mgr.smithi152.jkoscf (mgr.14182) 707 : audit [DBG] from='client.15002 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:30.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:30 smithi152 bash[16344]: cluster 2024-01-24T03:08:28.837829+0000 mgr.smithi152.jkoscf (mgr.14182) 708 : cluster [DBG] pgmap v501: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:30.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:30 smithi195 bash[19846]: audit 2024-01-24T03:08:28.802335+0000 mgr.smithi152.jkoscf (mgr.14182) 707 : audit [DBG] from='client.15002 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:30.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:30 smithi195 bash[19846]: cluster 2024-01-24T03:08:28.837829+0000 mgr.smithi152.jkoscf (mgr.14182) 708 : cluster [DBG] pgmap v501: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:32.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:32 smithi152 bash[16344]: cluster 2024-01-24T03:08:30.839554+0000 mgr.smithi152.jkoscf (mgr.14182) 709 : cluster [DBG] pgmap v502: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:32.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:32 smithi195 bash[19846]: cluster 2024-01-24T03:08:30.839554+0000 mgr.smithi152.jkoscf (mgr.14182) 709 : cluster [DBG] pgmap v502: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:33.712 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:08:33.712 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:08:34.302 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:08:34.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:34 smithi152 bash[16344]: cluster 2024-01-24T03:08:32.840782+0000 mgr.smithi152.jkoscf (mgr.14182) 710 : cluster [DBG] pgmap v503: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:34.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:34 smithi152 bash[16344]: audit 2024-01-24T03:08:33.696296+0000 mgr.smithi152.jkoscf (mgr.14182) 711 : audit [DBG] from='client.15006 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:34.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:34 smithi195 bash[19846]: cluster 2024-01-24T03:08:32.840782+0000 mgr.smithi152.jkoscf (mgr.14182) 710 : cluster [DBG] pgmap v503: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:34.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:34 smithi195 bash[19846]: audit 2024-01-24T03:08:33.696296+0000 mgr.smithi152.jkoscf (mgr.14182) 711 : audit [DBG] from='client.15006 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:35.303 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:08:36.679 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:36 smithi152 bash[16344]: cluster 2024-01-24T03:08:34.842565+0000 mgr.smithi152.jkoscf (mgr.14182) 712 : cluster [DBG] pgmap v504: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:36.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:36 smithi195 bash[19846]: cluster 2024-01-24T03:08:34.842565+0000 mgr.smithi152.jkoscf (mgr.14182) 712 : cluster [DBG] pgmap v504: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:38.480 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:08:38.480 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:08:38.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:38 smithi152 bash[16344]: cluster 2024-01-24T03:08:36.844414+0000 mgr.smithi152.jkoscf (mgr.14182) 713 : cluster [DBG] pgmap v505: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:08:38.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:38 smithi195 bash[19846]: cluster 2024-01-24T03:08:36.844414+0000 mgr.smithi152.jkoscf (mgr.14182) 713 : cluster [DBG] pgmap v505: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:08:39.103 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:08:39.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:39 smithi152 bash[16344]: audit 2024-01-24T03:08:38.466542+0000 mgr.smithi152.jkoscf (mgr.14182) 714 : audit [DBG] from='client.15010 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:39.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:39 smithi195 bash[19846]: audit 2024-01-24T03:08:38.466542+0000 mgr.smithi152.jkoscf (mgr.14182) 714 : audit [DBG] from='client.15010 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:40.104 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:08:40.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:40 smithi152 bash[16344]: cluster 2024-01-24T03:08:38.845967+0000 mgr.smithi152.jkoscf (mgr.14182) 715 : cluster [DBG] pgmap v506: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:40.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:40 smithi195 bash[19846]: cluster 2024-01-24T03:08:38.845967+0000 mgr.smithi152.jkoscf (mgr.14182) 715 : cluster [DBG] pgmap v506: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:41.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:41 smithi152 bash[16344]: audit 2024-01-24T03:08:40.803251+0000 mon.smithi152 (mon.0) 812 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:08:41.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:41 smithi152 bash[16344]: audit 2024-01-24T03:08:41.114118+0000 mon.smithi152 (mon.0) 813 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:08:41.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:41 smithi152 bash[16344]: audit 2024-01-24T03:08:41.115075+0000 mon.smithi152 (mon.0) 814 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:08:41.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:41 smithi152 bash[16344]: audit 2024-01-24T03:08:41.122095+0000 mon.smithi152 (mon.0) 815 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:08:41.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:41 smithi152 bash[16344]: audit 2024-01-24T03:08:41.128757+0000 mon.smithi152 (mon.0) 816 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:08:41.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:41 smithi152 bash[16344]: audit 2024-01-24T03:08:41.141258+0000 mon.smithi152 (mon.0) 817 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:08:41.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:41 smithi195 bash[19846]: audit 2024-01-24T03:08:40.803251+0000 mon.smithi152 (mon.0) 812 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:08:41.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:41 smithi195 bash[19846]: audit 2024-01-24T03:08:41.114118+0000 mon.smithi152 (mon.0) 813 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:08:41.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:41 smithi195 bash[19846]: audit 2024-01-24T03:08:41.115075+0000 mon.smithi152 (mon.0) 814 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:08:41.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:41 smithi195 bash[19846]: audit 2024-01-24T03:08:41.122095+0000 mon.smithi152 (mon.0) 815 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:08:41.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:41 smithi195 bash[19846]: audit 2024-01-24T03:08:41.128757+0000 mon.smithi152 (mon.0) 816 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:08:41.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:41 smithi195 bash[19846]: audit 2024-01-24T03:08:41.141258+0000 mon.smithi152 (mon.0) 817 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:08:42.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:42 smithi152 bash[16344]: cluster 2024-01-24T03:08:40.847208+0000 mgr.smithi152.jkoscf (mgr.14182) 716 : cluster [DBG] pgmap v507: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:42.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:42 smithi152 bash[16344]: cluster 2024-01-24T03:08:41.122804+0000 mgr.smithi152.jkoscf (mgr.14182) 717 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:08:42.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:42 smithi152 bash[16344]: cephadm 2024-01-24T03:08:41.144359+0000 mgr.smithi152.jkoscf (mgr.14182) 718 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.hlxhtt on smithi195 2024-01-24T03:08:42.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:42 smithi152 bash[16344]: cluster 2024-01-24T03:08:41.564780+0000 mon.smithi152 (mon.0) 818 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:08:42.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:42 smithi152 bash[16344]: cluster 2024-01-24T03:08:41.564861+0000 mon.smithi152 (mon.0) 819 : cluster [INF] Cluster is now healthy 2024-01-24T03:08:42.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:42 smithi195 bash[19846]: cluster 2024-01-24T03:08:40.847208+0000 mgr.smithi152.jkoscf (mgr.14182) 716 : cluster [DBG] pgmap v507: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:42.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:42 smithi195 bash[19846]: cluster 2024-01-24T03:08:41.122804+0000 mgr.smithi152.jkoscf (mgr.14182) 717 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:08:42.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:42 smithi195 bash[19846]: cephadm 2024-01-24T03:08:41.144359+0000 mgr.smithi152.jkoscf (mgr.14182) 718 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.hlxhtt on smithi195 2024-01-24T03:08:42.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:42 smithi195 bash[19846]: cluster 2024-01-24T03:08:41.564780+0000 mon.smithi152 (mon.0) 818 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:08:42.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:42 smithi195 bash[19846]: cluster 2024-01-24T03:08:41.564861+0000 mon.smithi152 (mon.0) 819 : cluster [INF] Cluster is now healthy 2024-01-24T03:08:43.376 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:08:43.376 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:06:32.420174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.meidbd on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:08:44.007 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:08:44.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:44 smithi195 bash[19846]: cluster 2024-01-24T03:08:43.123650+0000 mgr.smithi152.jkoscf (mgr.14182) 719 : cluster [DBG] pgmap v509: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:08:44.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:44 smithi195 bash[19846]: audit 2024-01-24T03:08:43.365729+0000 mgr.smithi152.jkoscf (mgr.14182) 720 : audit [DBG] from='client.15014 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:45.008 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:08:45.020 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:44 smithi152 bash[16344]: cluster 2024-01-24T03:08:43.123650+0000 mgr.smithi152.jkoscf (mgr.14182) 719 : cluster [DBG] pgmap v509: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:08:45.021 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:44 smithi152 bash[16344]: audit 2024-01-24T03:08:43.365729+0000 mgr.smithi152.jkoscf (mgr.14182) 720 : audit [DBG] from='client.15014 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:45.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:45 smithi152 bash[16344]: audit 2024-01-24T03:08:45.094344+0000 mon.smithi152 (mon.0) 820 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.hlxhtt"}]: dispatch 2024-01-24T03:08:45.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:45 smithi195 bash[19846]: audit 2024-01-24T03:08:45.094344+0000 mon.smithi152 (mon.0) 820 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.hlxhtt"}]: dispatch 2024-01-24T03:08:46.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: cephadm 2024-01-24T03:08:45.093139+0000 mgr.smithi152.jkoscf (mgr.14182) 721 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt 2024-01-24T03:08:46.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:08:46.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt 2024-01-24T03:08:46.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.hlxhtt ... 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:08:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.hlxhtt ... 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: cephadm 2024-01-24T03:08:45.093640+0000 mgr.smithi152.jkoscf (mgr.14182) 722 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: cephadm 2024-01-24T03:08:45.096098+0000 mgr.smithi152.jkoscf (mgr.14182) 723 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt 2024-01-24T03:08:46.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:08:46.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt 2024-01-24T03:08:46.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:08:46.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.hlxhtt ... 2024-01-24T03:08:46.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:46.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:08:46.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:08:46.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:08:46.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:46.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: cephadm 2024-01-24T03:08:45.100780+0000 mgr.smithi152.jkoscf (mgr.14182) 724 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.deikou on smithi152 2024-01-24T03:08:46.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:46 smithi152 bash[16344]: cluster 2024-01-24T03:08:45.125183+0000 mgr.smithi152.jkoscf (mgr.14182) 725 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:08:46.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: cephadm 2024-01-24T03:08:45.093139+0000 mgr.smithi152.jkoscf (mgr.14182) 721 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt 2024-01-24T03:08:46.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:08:46.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt 2024-01-24T03:08:46.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:08:46.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.hlxhtt ... 2024-01-24T03:08:46.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:46.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:08:46.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:08:46.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.hlxhtt ... 2024-01-24T03:08:46.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: cephadm 2024-01-24T03:08:45.093640+0000 mgr.smithi152.jkoscf (mgr.14182) 722 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: cephadm 2024-01-24T03:08:45.096098+0000 mgr.smithi152.jkoscf (mgr.14182) 723 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.hlxhtt ... 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:46.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:08:46.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:08:46.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:08:46.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:46.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: cephadm 2024-01-24T03:08:45.100780+0000 mgr.smithi152.jkoscf (mgr.14182) 724 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.deikou on smithi152 2024-01-24T03:08:46.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:46 smithi195 bash[19846]: cluster 2024-01-24T03:08:45.125183+0000 mgr.smithi152.jkoscf (mgr.14182) 725 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:08:48.264 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:08:48.264 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:36.702334Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.lkpogf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-lkpogf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.lkpogf\nDeploy daemon haproxy.nfs.foo.smithi195.lkpogf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.790345Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.dozbkg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-dozbkg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.dozbkg\nDeploy daemon haproxy.nfs.foo.smithi152.dozbkg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:07:40.795913Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.txgspe on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:08:48.873 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:48 smithi152 bash[16344]: cluster 2024-01-24T03:08:47.126614+0000 mgr.smithi152.jkoscf (mgr.14182) 726 : cluster [DBG] pgmap v511: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:08:48.874 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:08:48.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:48 smithi195 bash[19846]: cluster 2024-01-24T03:08:47.126614+0000 mgr.smithi152.jkoscf (mgr.14182) 726 : cluster [DBG] pgmap v511: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:08:49.875 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:08:49.888 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:49 smithi152 bash[16344]: audit 2024-01-24T03:08:48.245558+0000 mgr.smithi152.jkoscf (mgr.14182) 727 : audit [DBG] from='client.15018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:49.888 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:49 smithi152 bash[16344]: audit 2024-01-24T03:08:49.096369+0000 mon.smithi152 (mon.0) 821 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.deikou"}]: dispatch 2024-01-24T03:08:49.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:49 smithi195 bash[19846]: audit 2024-01-24T03:08:48.245558+0000 mgr.smithi152.jkoscf (mgr.14182) 727 : audit [DBG] from='client.15018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:49.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:49 smithi195 bash[19846]: audit 2024-01-24T03:08:49.096369+0000 mon.smithi152 (mon.0) 821 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.deikou"}]: dispatch 2024-01-24T03:08:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: cephadm 2024-01-24T03:08:49.094958+0000 mgr.smithi152.jkoscf (mgr.14182) 728 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou 2024-01-24T03:08:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:08:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou 2024-01-24T03:08:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:08:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.deikou ... 2024-01-24T03:08:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:08:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:08:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:08:50.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:08:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:08:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:08:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:08:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:08:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou 2024-01-24T03:08:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:08:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou 2024-01-24T03:08:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:08:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.deikou ... 2024-01-24T03:08:50.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: cephadm 2024-01-24T03:08:49.095584+0000 mgr.smithi152.jkoscf (mgr.14182) 729 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: cephadm 2024-01-24T03:08:49.097908+0000 mgr.smithi152.jkoscf (mgr.14182) 730 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.deikou ... 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:50.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:08:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:08:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:08:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: cephadm 2024-01-24T03:08:49.102074+0000 mgr.smithi152.jkoscf (mgr.14182) 731 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:08:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: cephadm 2024-01-24T03:08:49.106146+0000 mgr.smithi152.jkoscf (mgr.14182) 732 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:08:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: cluster 2024-01-24T03:08:49.107740+0000 mgr.smithi152.jkoscf (mgr.14182) 733 : cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:08:50.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:50 smithi195 bash[19846]: cluster 2024-01-24T03:08:49.603265+0000 mon.smithi152 (mon.0) 822 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:08:50.995 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: cephadm 2024-01-24T03:08:49.094958+0000 mgr.smithi152.jkoscf (mgr.14182) 728 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou 2024-01-24T03:08:50.996 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:08:50.996 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou 2024-01-24T03:08:50.996 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.996 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:08:50.996 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.996 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.deikou ... 2024-01-24T03:08:50.996 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:50.996 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:08:50.996 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:08:50.996 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:08:50.996 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:50.996 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:08:50.996 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.deikou ... 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:08:50.997 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: cephadm 2024-01-24T03:08:49.095584+0000 mgr.smithi152.jkoscf (mgr.14182) 729 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: cephadm 2024-01-24T03:08:49.097908+0000 mgr.smithi152.jkoscf (mgr.14182) 730 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.deikou ... 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:08:50.998 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:08:50.999 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: cephadm 2024-01-24T03:08:49.102074+0000 mgr.smithi152.jkoscf (mgr.14182) 731 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:08:50.999 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: cephadm 2024-01-24T03:08:49.106146+0000 mgr.smithi152.jkoscf (mgr.14182) 732 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:08:50.999 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: cluster 2024-01-24T03:08:49.107740+0000 mgr.smithi152.jkoscf (mgr.14182) 733 : cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:08:50.999 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:50 smithi152 bash[16344]: cluster 2024-01-24T03:08:49.603265+0000 mon.smithi152 (mon.0) 822 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:08:52.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:52 smithi195 bash[19846]: cluster 2024-01-24T03:08:51.109479+0000 mgr.smithi152.jkoscf (mgr.14182) 734 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:08:52.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:52 smithi195 bash[19846]: audit 2024-01-24T03:08:52.355968+0000 mon.smithi152 (mon.0) 823 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:08:53.048 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:08:53.048 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:08:53.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:52 smithi152 bash[16344]: cluster 2024-01-24T03:08:51.109479+0000 mgr.smithi152.jkoscf (mgr.14182) 734 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:08:53.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:52 smithi152 bash[16344]: audit 2024-01-24T03:08:52.355968+0000 mon.smithi152 (mon.0) 823 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:08:53.740 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:08:54.741 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:08:54.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:54 smithi195 bash[19846]: audit 2024-01-24T03:08:53.029786+0000 mgr.smithi152.jkoscf (mgr.14182) 735 : audit [DBG] from='client.15022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:54.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:54 smithi195 bash[19846]: cluster 2024-01-24T03:08:53.110691+0000 mgr.smithi152.jkoscf (mgr.14182) 736 : cluster [DBG] pgmap v514: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:55.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:54 smithi152 bash[16344]: audit 2024-01-24T03:08:53.029786+0000 mgr.smithi152.jkoscf (mgr.14182) 735 : audit [DBG] from='client.15022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:55.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:54 smithi152 bash[16344]: cluster 2024-01-24T03:08:53.110691+0000 mgr.smithi152.jkoscf (mgr.14182) 736 : cluster [DBG] pgmap v514: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:56.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:56 smithi195 bash[19846]: cluster 2024-01-24T03:08:55.112504+0000 mgr.smithi152.jkoscf (mgr.14182) 737 : cluster [DBG] pgmap v515: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:57.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:56 smithi152 bash[16344]: cluster 2024-01-24T03:08:55.112504+0000 mgr.smithi152.jkoscf (mgr.14182) 737 : cluster [DBG] pgmap v515: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:08:57.938 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:08:57.938 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:08:58.551 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:08:58.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:58 smithi152 bash[16344]: cluster 2024-01-24T03:08:57.114225+0000 mgr.smithi152.jkoscf (mgr.14182) 738 : cluster [DBG] pgmap v516: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:08:58.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:58 smithi195 bash[19846]: cluster 2024-01-24T03:08:57.114225+0000 mgr.smithi152.jkoscf (mgr.14182) 738 : cluster [DBG] pgmap v516: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:08:59.552 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:08:59.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:08:59 smithi152 bash[16344]: audit 2024-01-24T03:08:57.922077+0000 mgr.smithi152.jkoscf (mgr.14182) 739 : audit [DBG] from='client.15026 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:08:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:08:59 smithi195 bash[19846]: audit 2024-01-24T03:08:57.922077+0000 mgr.smithi152.jkoscf (mgr.14182) 739 : audit [DBG] from='client.15026 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:00.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:00 smithi152 bash[16344]: cluster 2024-01-24T03:08:59.115935+0000 mgr.smithi152.jkoscf (mgr.14182) 740 : cluster [DBG] pgmap v517: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:00.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:00 smithi195 bash[19846]: cluster 2024-01-24T03:08:59.115935+0000 mgr.smithi152.jkoscf (mgr.14182) 740 : cluster [DBG] pgmap v517: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:02.768 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:09:02.768 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:09:02.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:02 smithi195 bash[19846]: cluster 2024-01-24T03:09:01.117737+0000 mgr.smithi152.jkoscf (mgr.14182) 741 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:03.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:02 smithi152 bash[16344]: cluster 2024-01-24T03:09:01.117737+0000 mgr.smithi152.jkoscf (mgr.14182) 741 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:03.385 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:09:03.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:03 smithi195 bash[19846]: audit 2024-01-24T03:09:02.750159+0000 mgr.smithi152.jkoscf (mgr.14182) 742 : audit [DBG] from='client.15030 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:04.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:03 smithi152 bash[16344]: audit 2024-01-24T03:09:02.750159+0000 mgr.smithi152.jkoscf (mgr.14182) 742 : audit [DBG] from='client.15030 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:04.387 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:09:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:04 smithi195 bash[19846]: cluster 2024-01-24T03:09:03.119059+0000 mgr.smithi152.jkoscf (mgr.14182) 743 : cluster [DBG] pgmap v519: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:04 smithi152 bash[16344]: cluster 2024-01-24T03:09:03.119059+0000 mgr.smithi152.jkoscf (mgr.14182) 743 : cluster [DBG] pgmap v519: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:06 smithi195 bash[19846]: cluster 2024-01-24T03:09:05.120846+0000 mgr.smithi152.jkoscf (mgr.14182) 744 : cluster [DBG] pgmap v520: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:07.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:06 smithi152 bash[16344]: cluster 2024-01-24T03:09:05.120846+0000 mgr.smithi152.jkoscf (mgr.14182) 744 : cluster [DBG] pgmap v520: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:07.535 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:09:07.535 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:09:08.122 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:09:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:08 smithi195 bash[19846]: cluster 2024-01-24T03:09:07.122205+0000 mgr.smithi152.jkoscf (mgr.14182) 745 : cluster [DBG] pgmap v521: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:09:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:08 smithi195 bash[19846]: audit 2024-01-24T03:09:07.518372+0000 mgr.smithi152.jkoscf (mgr.14182) 746 : audit [DBG] from='client.15034 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:08 smithi152 bash[16344]: cluster 2024-01-24T03:09:07.122205+0000 mgr.smithi152.jkoscf (mgr.14182) 745 : cluster [DBG] pgmap v521: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:09:09.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:08 smithi152 bash[16344]: audit 2024-01-24T03:09:07.518372+0000 mgr.smithi152.jkoscf (mgr.14182) 746 : audit [DBG] from='client.15034 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:09.123 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:09:10.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:10 smithi152 bash[16344]: cluster 2024-01-24T03:09:09.123820+0000 mgr.smithi152.jkoscf (mgr.14182) 747 : cluster [DBG] pgmap v522: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:10 smithi195 bash[19846]: cluster 2024-01-24T03:09:09.123820+0000 mgr.smithi152.jkoscf (mgr.14182) 747 : cluster [DBG] pgmap v522: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:12.299 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:09:12.299 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:09:12.901 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:09:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:12 smithi195 bash[19846]: cluster 2024-01-24T03:09:11.125582+0000 mgr.smithi152.jkoscf (mgr.14182) 748 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:13.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:12 smithi152 bash[16344]: cluster 2024-01-24T03:09:11.125582+0000 mgr.smithi152.jkoscf (mgr.14182) 748 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:13.902 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:09:13.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:13 smithi195 bash[19846]: audit 2024-01-24T03:09:12.286510+0000 mgr.smithi152.jkoscf (mgr.14182) 749 : audit [DBG] from='client.15038 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:13 smithi152 bash[16344]: audit 2024-01-24T03:09:12.286510+0000 mgr.smithi152.jkoscf (mgr.14182) 749 : audit [DBG] from='client.15038 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:14.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:14 smithi195 bash[19846]: cluster 2024-01-24T03:09:13.126989+0000 mgr.smithi152.jkoscf (mgr.14182) 750 : cluster [DBG] pgmap v524: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:15.061 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:14 smithi152 bash[16344]: cluster 2024-01-24T03:09:13.126989+0000 mgr.smithi152.jkoscf (mgr.14182) 750 : cluster [DBG] pgmap v524: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:16.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:16 smithi195 bash[19846]: cluster 2024-01-24T03:09:15.128510+0000 mgr.smithi152.jkoscf (mgr.14182) 751 : cluster [DBG] pgmap v525: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:17.076 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:09:17.076 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:09:17.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:16 smithi152 bash[16344]: cluster 2024-01-24T03:09:15.128510+0000 mgr.smithi152.jkoscf (mgr.14182) 751 : cluster [DBG] pgmap v525: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:17.723 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:09:18.724 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:09:18.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:18 smithi195 bash[19846]: audit 2024-01-24T03:09:17.059872+0000 mgr.smithi152.jkoscf (mgr.14182) 752 : audit [DBG] from='client.15042 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:18.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:18 smithi195 bash[19846]: cluster 2024-01-24T03:09:17.130219+0000 mgr.smithi152.jkoscf (mgr.14182) 753 : cluster [DBG] pgmap v526: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:09:19.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:18 smithi152 bash[16344]: audit 2024-01-24T03:09:17.059872+0000 mgr.smithi152.jkoscf (mgr.14182) 752 : audit [DBG] from='client.15042 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:19.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:18 smithi152 bash[16344]: cluster 2024-01-24T03:09:17.130219+0000 mgr.smithi152.jkoscf (mgr.14182) 753 : cluster [DBG] pgmap v526: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:09:20.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:20 smithi195 bash[19846]: cluster 2024-01-24T03:09:19.131890+0000 mgr.smithi152.jkoscf (mgr.14182) 754 : cluster [DBG] pgmap v527: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:21.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:20 smithi152 bash[16344]: cluster 2024-01-24T03:09:19.131890+0000 mgr.smithi152.jkoscf (mgr.14182) 754 : cluster [DBG] pgmap v527: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:21.836 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:09:21.836 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:09:22.447 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:09:23.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:22 smithi152 bash[16344]: cluster 2024-01-24T03:09:21.133648+0000 mgr.smithi152.jkoscf (mgr.14182) 755 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:23.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:22 smithi195 bash[19846]: cluster 2024-01-24T03:09:21.133648+0000 mgr.smithi152.jkoscf (mgr.14182) 755 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:23.448 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:09:24.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:23 smithi152 bash[16344]: audit 2024-01-24T03:09:21.825069+0000 mgr.smithi152.jkoscf (mgr.14182) 756 : audit [DBG] from='client.15046 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:24.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:23 smithi195 bash[19846]: audit 2024-01-24T03:09:21.825069+0000 mgr.smithi152.jkoscf (mgr.14182) 756 : audit [DBG] from='client.15046 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:24.900 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:24 smithi152 bash[16344]: cluster 2024-01-24T03:09:23.135018+0000 mgr.smithi152.jkoscf (mgr.14182) 757 : cluster [DBG] pgmap v529: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:25.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:24 smithi195 bash[19846]: cluster 2024-01-24T03:09:23.135018+0000 mgr.smithi152.jkoscf (mgr.14182) 757 : cluster [DBG] pgmap v529: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:26.760 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:09:26.761 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:09:27.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:26 smithi152 bash[16344]: cluster 2024-01-24T03:09:25.136796+0000 mgr.smithi152.jkoscf (mgr.14182) 758 : cluster [DBG] pgmap v530: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:27.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:26 smithi195 bash[19846]: cluster 2024-01-24T03:09:25.136796+0000 mgr.smithi152.jkoscf (mgr.14182) 758 : cluster [DBG] pgmap v530: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:27.376 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:09:28.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:27 smithi152 bash[16344]: audit 2024-01-24T03:09:26.744166+0000 mgr.smithi152.jkoscf (mgr.14182) 759 : audit [DBG] from='client.15050 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:28.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:27 smithi195 bash[19846]: audit 2024-01-24T03:09:26.744166+0000 mgr.smithi152.jkoscf (mgr.14182) 759 : audit [DBG] from='client.15050 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:28.377 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:09:29.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:28 smithi152 bash[16344]: cluster 2024-01-24T03:09:27.138986+0000 mgr.smithi152.jkoscf (mgr.14182) 760 : cluster [DBG] pgmap v531: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:09:29.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:28 smithi195 bash[19846]: cluster 2024-01-24T03:09:27.138986+0000 mgr.smithi152.jkoscf (mgr.14182) 760 : cluster [DBG] pgmap v531: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:09:31.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:30 smithi152 bash[16344]: cluster 2024-01-24T03:09:29.140609+0000 mgr.smithi152.jkoscf (mgr.14182) 761 : cluster [DBG] pgmap v532: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:31.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:30 smithi195 bash[19846]: cluster 2024-01-24T03:09:29.140609+0000 mgr.smithi152.jkoscf (mgr.14182) 761 : cluster [DBG] pgmap v532: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:31.637 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:09:31.637 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:09:32.299 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:09:33.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:32 smithi152 bash[16344]: cluster 2024-01-24T03:09:31.142466+0000 mgr.smithi152.jkoscf (mgr.14182) 762 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:33.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:32 smithi152 bash[16344]: audit 2024-01-24T03:09:31.625999+0000 mgr.smithi152.jkoscf (mgr.14182) 763 : audit [DBG] from='client.15054 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:33.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:32 smithi195 bash[19846]: cluster 2024-01-24T03:09:31.142466+0000 mgr.smithi152.jkoscf (mgr.14182) 762 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:33.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:32 smithi195 bash[19846]: audit 2024-01-24T03:09:31.625999+0000 mgr.smithi152.jkoscf (mgr.14182) 763 : audit [DBG] from='client.15054 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:33.300 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:09:35.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:34 smithi152 bash[16344]: cluster 2024-01-24T03:09:33.143757+0000 mgr.smithi152.jkoscf (mgr.14182) 764 : cluster [DBG] pgmap v534: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:35.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:34 smithi195 bash[19846]: cluster 2024-01-24T03:09:33.143757+0000 mgr.smithi152.jkoscf (mgr.14182) 764 : cluster [DBG] pgmap v534: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:36.618 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:09:36.619 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:09:37.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:36 smithi152 bash[16344]: cluster 2024-01-24T03:09:35.145518+0000 mgr.smithi152.jkoscf (mgr.14182) 765 : cluster [DBG] pgmap v535: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:37.228 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:09:37.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:36 smithi195 bash[19846]: cluster 2024-01-24T03:09:35.145518+0000 mgr.smithi152.jkoscf (mgr.14182) 765 : cluster [DBG] pgmap v535: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:38.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:37 smithi152 bash[16344]: audit 2024-01-24T03:09:36.603630+0000 mgr.smithi152.jkoscf (mgr.14182) 766 : audit [DBG] from='client.15058 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:38.230 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:09:38.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:37 smithi195 bash[19846]: audit 2024-01-24T03:09:36.603630+0000 mgr.smithi152.jkoscf (mgr.14182) 766 : audit [DBG] from='client.15058 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:39.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:38 smithi152 bash[16344]: cluster 2024-01-24T03:09:37.147410+0000 mgr.smithi152.jkoscf (mgr.14182) 767 : cluster [DBG] pgmap v536: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:09:39.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:38 smithi195 bash[19846]: cluster 2024-01-24T03:09:37.147410+0000 mgr.smithi152.jkoscf (mgr.14182) 767 : cluster [DBG] pgmap v536: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:09:40.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:39 smithi152 bash[16344]: cluster 2024-01-24T03:09:39.148953+0000 mgr.smithi152.jkoscf (mgr.14182) 768 : cluster [DBG] pgmap v537: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:40.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:39 smithi195 bash[19846]: cluster 2024-01-24T03:09:39.148953+0000 mgr.smithi152.jkoscf (mgr.14182) 768 : cluster [DBG] pgmap v537: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:41.523 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:09:41.524 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:09:42.122 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:09:42.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:42 smithi195 bash[19846]: cluster 2024-01-24T03:09:41.150738+0000 mgr.smithi152.jkoscf (mgr.14182) 769 : cluster [DBG] pgmap v538: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:42.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:42 smithi195 bash[19846]: audit 2024-01-24T03:09:41.508940+0000 mgr.smithi152.jkoscf (mgr.14182) 770 : audit [DBG] from='client.15062 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:42.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:42 smithi152 bash[16344]: cluster 2024-01-24T03:09:41.150738+0000 mgr.smithi152.jkoscf (mgr.14182) 769 : cluster [DBG] pgmap v538: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:42.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:42 smithi152 bash[16344]: audit 2024-01-24T03:09:41.508940+0000 mgr.smithi152.jkoscf (mgr.14182) 770 : audit [DBG] from='client.15062 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:43.123 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:09:44.481 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:44 smithi152 bash[16344]: cluster 2024-01-24T03:09:43.152088+0000 mgr.smithi152.jkoscf (mgr.14182) 771 : cluster [DBG] pgmap v539: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:44.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:44 smithi195 bash[19846]: cluster 2024-01-24T03:09:43.152088+0000 mgr.smithi152.jkoscf (mgr.14182) 771 : cluster [DBG] pgmap v539: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:46.259 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:09:46.260 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:09:46.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:46 smithi152 bash[16344]: cluster 2024-01-24T03:09:45.153890+0000 mgr.smithi152.jkoscf (mgr.14182) 772 : cluster [DBG] pgmap v540: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:46.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:46 smithi195 bash[19846]: cluster 2024-01-24T03:09:45.153890+0000 mgr.smithi152.jkoscf (mgr.14182) 772 : cluster [DBG] pgmap v540: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:46.841 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:09:47.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:47 smithi195 bash[19846]: audit 2024-01-24T03:09:46.243904+0000 mgr.smithi152.jkoscf (mgr.14182) 773 : audit [DBG] from='client.15066 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:47.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:47 smithi152 bash[16344]: audit 2024-01-24T03:09:46.243904+0000 mgr.smithi152.jkoscf (mgr.14182) 773 : audit [DBG] from='client.15066 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:47.841 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:09:48.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:48 smithi195 bash[19846]: cluster 2024-01-24T03:09:47.155732+0000 mgr.smithi152.jkoscf (mgr.14182) 774 : cluster [DBG] pgmap v541: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:09:48.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:48 smithi152 bash[16344]: cluster 2024-01-24T03:09:47.155732+0000 mgr.smithi152.jkoscf (mgr.14182) 774 : cluster [DBG] pgmap v541: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:09:49.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:49 smithi152 bash[16344]: audit 2024-01-24T03:09:49.112268+0000 mon.smithi152 (mon.0) 824 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:09:49.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:49 smithi195 bash[19846]: audit 2024-01-24T03:09:49.112268+0000 mon.smithi152 (mon.0) 824 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:09:50.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:50 smithi195 bash[19846]: cluster 2024-01-24T03:09:49.156907+0000 mgr.smithi152.jkoscf (mgr.14182) 775 : cluster [DBG] pgmap v542: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:50.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:50 smithi195 bash[19846]: audit 2024-01-24T03:09:49.438547+0000 mon.smithi152 (mon.0) 825 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:09:50.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:50 smithi195 bash[19846]: audit 2024-01-24T03:09:49.440302+0000 mon.smithi152 (mon.0) 826 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:09:50.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:50 smithi195 bash[19846]: audit 2024-01-24T03:09:49.449480+0000 mon.smithi152 (mon.0) 827 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:09:50.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:50 smithi195 bash[19846]: cluster 2024-01-24T03:09:49.450572+0000 mgr.smithi152.jkoscf (mgr.14182) 776 : cluster [DBG] pgmap v543: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:09:50.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:50 smithi195 bash[19846]: audit 2024-01-24T03:09:49.458924+0000 mon.smithi152 (mon.0) 828 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:09:50.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:50 smithi195 bash[19846]: audit 2024-01-24T03:09:49.472813+0000 mon.smithi152 (mon.0) 829 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:09:50.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:50 smithi195 bash[19846]: cephadm 2024-01-24T03:09:49.475739+0000 mgr.smithi152.jkoscf (mgr.14182) 777 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.txofyh on smithi195 2024-01-24T03:09:50.716 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:50 smithi152 bash[16344]: cluster 2024-01-24T03:09:49.156907+0000 mgr.smithi152.jkoscf (mgr.14182) 775 : cluster [DBG] pgmap v542: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:09:50.716 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:50 smithi152 bash[16344]: audit 2024-01-24T03:09:49.438547+0000 mon.smithi152 (mon.0) 825 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:09:50.716 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:50 smithi152 bash[16344]: audit 2024-01-24T03:09:49.440302+0000 mon.smithi152 (mon.0) 826 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:09:50.716 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:50 smithi152 bash[16344]: audit 2024-01-24T03:09:49.449480+0000 mon.smithi152 (mon.0) 827 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:09:50.716 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:50 smithi152 bash[16344]: cluster 2024-01-24T03:09:49.450572+0000 mgr.smithi152.jkoscf (mgr.14182) 776 : cluster [DBG] pgmap v543: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:09:50.716 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:50 smithi152 bash[16344]: audit 2024-01-24T03:09:49.458924+0000 mon.smithi152 (mon.0) 828 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:09:50.716 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:50 smithi152 bash[16344]: audit 2024-01-24T03:09:49.472813+0000 mon.smithi152 (mon.0) 829 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:09:50.717 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:50 smithi152 bash[16344]: cephadm 2024-01-24T03:09:49.475739+0000 mgr.smithi152.jkoscf (mgr.14182) 777 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.txofyh on smithi195 2024-01-24T03:09:51.084 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:09:51.084 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:07:40.798919Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wqbixk on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:09:51.718 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:51 smithi152 bash[16344]: cluster 2024-01-24T03:09:50.446050+0000 mon.smithi152 (mon.0) 830 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:09:51.719 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:51 smithi152 bash[16344]: cluster 2024-01-24T03:09:50.446088+0000 mon.smithi152 (mon.0) 831 : cluster [INF] Cluster is now healthy 2024-01-24T03:09:51.720 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:09:51.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:51 smithi195 bash[19846]: cluster 2024-01-24T03:09:50.446050+0000 mon.smithi152 (mon.0) 830 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:09:51.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:51 smithi195 bash[19846]: cluster 2024-01-24T03:09:50.446088+0000 mon.smithi152 (mon.0) 831 : cluster [INF] Cluster is now healthy 2024-01-24T03:09:52.721 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:09:52.733 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:52 smithi152 bash[16344]: audit 2024-01-24T03:09:51.066757+0000 mgr.smithi152.jkoscf (mgr.14182) 778 : audit [DBG] from='client.15070 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:52.734 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:52 smithi152 bash[16344]: cluster 2024-01-24T03:09:51.451426+0000 mgr.smithi152.jkoscf (mgr.14182) 779 : cluster [DBG] pgmap v544: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:09:52.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:52 smithi195 bash[19846]: audit 2024-01-24T03:09:51.066757+0000 mgr.smithi152.jkoscf (mgr.14182) 778 : audit [DBG] from='client.15070 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:52.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:52 smithi195 bash[19846]: cluster 2024-01-24T03:09:51.451426+0000 mgr.smithi152.jkoscf (mgr.14182) 779 : cluster [DBG] pgmap v544: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:09:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: cluster 2024-01-24T03:09:53.452300+0000 mgr.smithi152.jkoscf (mgr.14182) 780 : cluster [DBG] pgmap v545: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:09:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: cephadm 2024-01-24T03:09:53.529409+0000 mgr.smithi152.jkoscf (mgr.14182) 781 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:09:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:09:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:09:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:09:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.txofyh ... 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:09:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.txofyh ... 2024-01-24T03:09:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:09:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:09:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:09:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: cephadm 2024-01-24T03:09:53.529981+0000 mgr.smithi152.jkoscf (mgr.14182) 782 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: audit 2024-01-24T03:09:53.530786+0000 mon.smithi152 (mon.0) 832 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.txofyh"}]: dispatch 2024-01-24T03:09:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: cephadm 2024-01-24T03:09:53.532651+0000 mgr.smithi152.jkoscf (mgr.14182) 783 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:09:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:09:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:09:54.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:09:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.txofyh ... 2024-01-24T03:09:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:09:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:09:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:09:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: cephadm 2024-01-24T03:09:53.538204+0000 mgr.smithi152.jkoscf (mgr.14182) 784 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.tjcsnt on smithi152 2024-01-24T03:09:54.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:54 smithi195 bash[19846]: audit 2024-01-24T03:09:54.288200+0000 mon.smithi152 (mon.0) 833 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:09:54.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: cluster 2024-01-24T03:09:53.452300+0000 mgr.smithi152.jkoscf (mgr.14182) 780 : cluster [DBG] pgmap v545: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:09:54.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: cephadm 2024-01-24T03:09:53.529409+0000 mgr.smithi152.jkoscf (mgr.14182) 781 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:09:54.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:09:54.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:09:54.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:09:54.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.txofyh ... 2024-01-24T03:09:54.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:54.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:09:54.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:09:54.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:09:54.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:54.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:09:54.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:09:54.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:09:54.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:09:54.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:09:54.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:09:54.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:09:54.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:09:54.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:09:54.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.txofyh ... 2024-01-24T03:09:54.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:54.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:09:54.840 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:09:54.840 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:09:54.840 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:54.840 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: cephadm 2024-01-24T03:09:53.529981+0000 mgr.smithi152.jkoscf (mgr.14182) 782 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.840 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: audit 2024-01-24T03:09:53.530786+0000 mon.smithi152 (mon.0) 832 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.txofyh"}]: dispatch 2024-01-24T03:09:54.840 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: cephadm 2024-01-24T03:09:53.532651+0000 mgr.smithi152.jkoscf (mgr.14182) 783 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:09:54.840 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:09:54.840 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:09:54.841 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.841 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:09:54.841 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:09:54.841 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.txofyh ... 2024-01-24T03:09:54.841 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:54.841 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:09:54.841 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:09:54.841 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:09:54.841 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:54.841 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: cephadm 2024-01-24T03:09:53.538204+0000 mgr.smithi152.jkoscf (mgr.14182) 784 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.tjcsnt on smithi152 2024-01-24T03:09:54.841 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:54 smithi152 bash[16344]: audit 2024-01-24T03:09:54.288200+0000 mon.smithi152 (mon.0) 833 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:09:55.934 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:09:55.934 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:45.095816Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.hlxhtt on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-hlxhtt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.hlxhtt\nDeploy daemon haproxy.nfs.foo.smithi195.hlxhtt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.097638Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.deikou on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-deikou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.deikou\nDeploy daemon haproxy.nfs.foo.smithi152.deikou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:08:49.101859Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.hiduyp on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:09:56.571 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:09:56.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:56 smithi152 bash[16344]: cluster 2024-01-24T03:09:55.453615+0000 mgr.smithi152.jkoscf (mgr.14182) 785 : cluster [DBG] pgmap v546: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:09:56.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:56 smithi195 bash[19846]: cluster 2024-01-24T03:09:55.453615+0000 mgr.smithi152.jkoscf (mgr.14182) 785 : cluster [DBG] pgmap v546: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:09:57.572 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:09:57.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:57 smithi152 bash[16344]: audit 2024-01-24T03:09:55.922869+0000 mgr.smithi152.jkoscf (mgr.14182) 786 : audit [DBG] from='client.15074 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:57.584 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:57 smithi152 bash[16344]: audit 2024-01-24T03:09:57.349942+0000 mon.smithi152 (mon.0) 834 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.tjcsnt"}]: dispatch 2024-01-24T03:09:57.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:57 smithi152 bash[16344]: audit 2024-01-24T03:09:57.410159+0000 mon.smithi152 (mon.0) 835 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:09:57.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:57 smithi195 bash[19846]: audit 2024-01-24T03:09:55.922869+0000 mgr.smithi152.jkoscf (mgr.14182) 786 : audit [DBG] from='client.15074 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:09:57.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:57 smithi195 bash[19846]: audit 2024-01-24T03:09:57.349942+0000 mon.smithi152 (mon.0) 834 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.tjcsnt"}]: dispatch 2024-01-24T03:09:57.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:57 smithi195 bash[19846]: audit 2024-01-24T03:09:57.410159+0000 mon.smithi152 (mon.0) 835 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:09:58.789 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: cephadm 2024-01-24T03:09:57.348994+0000 mgr.smithi152.jkoscf (mgr.14182) 787 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:09:58.789 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:09:58.789 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:09:58.789 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.789 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:09:58.789 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.789 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.tjcsnt ... 2024-01-24T03:09:58.789 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:58.789 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:09:58.790 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.tjcsnt ... 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: cephadm 2024-01-24T03:09:57.349238+0000 mgr.smithi152.jkoscf (mgr.14182) 788 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: cephadm 2024-01-24T03:09:57.351661+0000 mgr.smithi152.jkoscf (mgr.14182) 789 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.791 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.tjcsnt ... 2024-01-24T03:09:58.792 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:58.792 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:09:58.792 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:09:58.792 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:09:58.792 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:58.792 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: cephadm 2024-01-24T03:09:57.353725+0000 mgr.smithi152.jkoscf (mgr.14182) 790 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:09:58.792 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: cephadm 2024-01-24T03:09:57.355275+0000 mgr.smithi152.jkoscf (mgr.14182) 791 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:09:58.792 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: cluster 2024-01-24T03:09:57.356924+0000 mgr.smithi152.jkoscf (mgr.14182) 792 : cluster [DBG] pgmap v547: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:09:58.792 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:09:58 smithi152 bash[16344]: cluster 2024-01-24T03:09:57.511077+0000 mon.smithi152 (mon.0) 836 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:09:58.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: cephadm 2024-01-24T03:09:57.348994+0000 mgr.smithi152.jkoscf (mgr.14182) 787 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:09:58.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:09:58.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:09:58.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:09:58.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.tjcsnt ... 2024-01-24T03:09:58.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:58.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:09:58.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:09:58.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:09:58.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:58.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:09:58.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:09:58.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:09:58.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:09:58.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:09:58.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:09:58.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:09:58.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:09:58.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:09:58.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.tjcsnt ... 2024-01-24T03:09:58.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:58.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:09:58.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: cephadm 2024-01-24T03:09:57.349238+0000 mgr.smithi152.jkoscf (mgr.14182) 788 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: cephadm 2024-01-24T03:09:57.351661+0000 mgr.smithi152.jkoscf (mgr.14182) 789 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.tjcsnt ... 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:09:58.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:09:58.996 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: cephadm 2024-01-24T03:09:57.353725+0000 mgr.smithi152.jkoscf (mgr.14182) 790 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:09:58.996 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: cephadm 2024-01-24T03:09:57.355275+0000 mgr.smithi152.jkoscf (mgr.14182) 791 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:09:58.996 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: cluster 2024-01-24T03:09:57.356924+0000 mgr.smithi152.jkoscf (mgr.14182) 792 : cluster [DBG] pgmap v547: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:09:58.996 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:09:58 smithi195 bash[19846]: cluster 2024-01-24T03:09:57.511077+0000 mon.smithi152 (mon.0) 836 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:10:00.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:09:59.358128+0000 mgr.smithi152.jkoscf (mgr.14182) 793 : cluster [DBG] pgmap v548: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:10:00.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000199+0000 mon.smithi152 (mon.0) 837 : cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2024-01-24T03:10:00.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000263+0000 mon.smithi152 (mon.0) 838 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2024-01-24T03:10:00.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000332+0000 mon.smithi152 (mon.0) 839 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:10:00.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000367+0000 mon.smithi152 (mon.0) 840 : cluster [WRN] /usr/bin/docker: stdout 2024-01-24T03:10:00.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000403+0000 mon.smithi152 (mon.0) 841 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:10:00.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000441+0000 mon.smithi152 (mon.0) 842 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:10:00.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000480+0000 mon.smithi152 (mon.0) 843 : cluster [WRN] /usr/bin/docker: stdout 2024-01-24T03:10:00.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000515+0000 mon.smithi152 (mon.0) 844 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:10:00.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000549+0000 mon.smithi152 (mon.0) 845 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi195.txofyh ... 2024-01-24T03:10:00.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000586+0000 mon.smithi152 (mon.0) 846 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:10:00.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000628+0000 mon.smithi152 (mon.0) 847 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:10:00.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000681+0000 mon.smithi152 (mon.0) 848 : cluster [WRN] stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:10:00.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000719+0000 mon.smithi152 (mon.0) 849 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-01-24T03:10:00.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000746+0000 mon.smithi152 (mon.0) 850 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000788+0000 mon.smithi152 (mon.0) 851 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000823+0000 mon.smithi152 (mon.0) 852 : cluster [WRN] /usr/bin/docker: stdout 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000858+0000 mon.smithi152 (mon.0) 853 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000892+0000 mon.smithi152 (mon.0) 854 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000929+0000 mon.smithi152 (mon.0) 855 : cluster [WRN] /usr/bin/docker: stdout 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.000963+0000 mon.smithi152 (mon.0) 856 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.001003+0000 mon.smithi152 (mon.0) 857 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi152.tjcsnt ... 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.001038+0000 mon.smithi152 (mon.0) 858 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.001074+0000 mon.smithi152 (mon.0) 859 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.001114+0000 mon.smithi152 (mon.0) 860 : cluster [WRN] stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.001150+0000 mon.smithi152 (mon.0) 861 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.001183+0000 mon.smithi152 (mon.0) 862 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.001220+0000 mon.smithi152 (mon.0) 863 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:10:00.587 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:00.001266+0000 mon.smithi152 (mon.0) 864 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:10:00.774 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:10:00.774 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:10:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:09:59.358128+0000 mgr.smithi152.jkoscf (mgr.14182) 793 : cluster [DBG] pgmap v548: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:10:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000199+0000 mon.smithi152 (mon.0) 837 : cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2024-01-24T03:10:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000263+0000 mon.smithi152 (mon.0) 838 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2024-01-24T03:10:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000332+0000 mon.smithi152 (mon.0) 839 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:10:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000367+0000 mon.smithi152 (mon.0) 840 : cluster [WRN] /usr/bin/docker: stdout 2024-01-24T03:10:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000403+0000 mon.smithi152 (mon.0) 841 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh 2024-01-24T03:10:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000441+0000 mon.smithi152 (mon.0) 842 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:10:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000480+0000 mon.smithi152 (mon.0) 843 : cluster [WRN] /usr/bin/docker: stdout 2024-01-24T03:10:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000515+0000 mon.smithi152 (mon.0) 844 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh 2024-01-24T03:10:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000549+0000 mon.smithi152 (mon.0) 845 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi195.txofyh ... 2024-01-24T03:10:00.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000586+0000 mon.smithi152 (mon.0) 846 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:10:00.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000628+0000 mon.smithi152 (mon.0) 847 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:10:00.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000681+0000 mon.smithi152 (mon.0) 848 : cluster [WRN] stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:10:00.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000719+0000 mon.smithi152 (mon.0) 849 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-01-24T03:10:00.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000746+0000 mon.smithi152 (mon.0) 850 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:10:00.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000788+0000 mon.smithi152 (mon.0) 851 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:10:00.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000823+0000 mon.smithi152 (mon.0) 852 : cluster [WRN] /usr/bin/docker: stdout 2024-01-24T03:10:00.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000858+0000 mon.smithi152 (mon.0) 853 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt 2024-01-24T03:10:00.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000892+0000 mon.smithi152 (mon.0) 854 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:10:00.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000929+0000 mon.smithi152 (mon.0) 855 : cluster [WRN] /usr/bin/docker: stdout 2024-01-24T03:10:00.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.000963+0000 mon.smithi152 (mon.0) 856 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt 2024-01-24T03:10:00.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.001003+0000 mon.smithi152 (mon.0) 857 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi152.tjcsnt ... 2024-01-24T03:10:00.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.001038+0000 mon.smithi152 (mon.0) 858 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:10:00.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.001074+0000 mon.smithi152 (mon.0) 859 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:10:00.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.001114+0000 mon.smithi152 (mon.0) 860 : cluster [WRN] stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:10:00.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.001150+0000 mon.smithi152 (mon.0) 861 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-01-24T03:10:00.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.001183+0000 mon.smithi152 (mon.0) 862 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:10:00.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.001220+0000 mon.smithi152 (mon.0) 863 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:10:00.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:00.001266+0000 mon.smithi152 (mon.0) 864 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:10:01.412 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:10:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:01 smithi152 bash[16344]: audit 2024-01-24T03:10:00.755856+0000 mgr.smithi152.jkoscf (mgr.14182) 794 : audit [DBG] from='client.15078 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:01 smithi195 bash[19846]: audit 2024-01-24T03:10:00.755856+0000 mgr.smithi152.jkoscf (mgr.14182) 794 : audit [DBG] from='client.15078 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:02.413 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:10:02.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:02 smithi152 bash[16344]: cluster 2024-01-24T03:10:01.359916+0000 mgr.smithi152.jkoscf (mgr.14182) 795 : cluster [DBG] pgmap v549: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:02.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:02 smithi195 bash[19846]: cluster 2024-01-24T03:10:01.359916+0000 mgr.smithi152.jkoscf (mgr.14182) 795 : cluster [DBG] pgmap v549: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:04.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:04 smithi152 bash[16344]: cluster 2024-01-24T03:10:03.361265+0000 mgr.smithi152.jkoscf (mgr.14182) 796 : cluster [DBG] pgmap v550: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 859 B/s rd, 0 B/s wr, 1 op/s 2024-01-24T03:10:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:04 smithi195 bash[19846]: cluster 2024-01-24T03:10:03.361265+0000 mgr.smithi152.jkoscf (mgr.14182) 796 : cluster [DBG] pgmap v550: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 859 B/s rd, 0 B/s wr, 1 op/s 2024-01-24T03:10:05.792 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:10:05.792 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:10:06.445 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:10:06.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:06 smithi152 bash[16344]: cluster 2024-01-24T03:10:05.363213+0000 mgr.smithi152.jkoscf (mgr.14182) 797 : cluster [DBG] pgmap v551: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 0 B/s wr, 18 op/s 2024-01-24T03:10:06.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:06 smithi152 bash[16344]: audit 2024-01-24T03:10:05.773060+0000 mgr.smithi152.jkoscf (mgr.14182) 798 : audit [DBG] from='client.15082 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:06 smithi195 bash[19846]: cluster 2024-01-24T03:10:05.363213+0000 mgr.smithi152.jkoscf (mgr.14182) 797 : cluster [DBG] pgmap v551: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 0 B/s wr, 18 op/s 2024-01-24T03:10:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:06 smithi195 bash[19846]: audit 2024-01-24T03:10:05.773060+0000 mgr.smithi152.jkoscf (mgr.14182) 798 : audit [DBG] from='client.15082 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:07.446 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:10:08.816 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:08 smithi152 bash[16344]: cluster 2024-01-24T03:10:07.365035+0000 mgr.smithi152.jkoscf (mgr.14182) 799 : cluster [DBG] pgmap v552: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 61 op/s 2024-01-24T03:10:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:08 smithi195 bash[19846]: cluster 2024-01-24T03:10:07.365035+0000 mgr.smithi152.jkoscf (mgr.14182) 799 : cluster [DBG] pgmap v552: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 61 op/s 2024-01-24T03:10:10.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:10 smithi195 bash[19846]: audit 2024-01-24T03:10:09.287598+0000 mon.smithi152 (mon.0) 865 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:10:10.491 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:10 smithi195 bash[19846]: cluster 2024-01-24T03:10:09.366144+0000 mgr.smithi152.jkoscf (mgr.14182) 800 : cluster [DBG] pgmap v553: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-24T03:10:10.560 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:10:10.560 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:10:10.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:10 smithi152 bash[16344]: audit 2024-01-24T03:10:09.287598+0000 mon.smithi152 (mon.0) 865 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:10:10.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:10 smithi152 bash[16344]: cluster 2024-01-24T03:10:09.366144+0000 mgr.smithi152.jkoscf (mgr.14182) 800 : cluster [DBG] pgmap v553: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-24T03:10:11.192 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:10:11.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:11 smithi152 bash[16344]: audit 2024-01-24T03:10:10.540724+0000 mgr.smithi152.jkoscf (mgr.14182) 801 : audit [DBG] from='client.15086 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:11.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:11 smithi195 bash[19846]: audit 2024-01-24T03:10:10.540724+0000 mgr.smithi152.jkoscf (mgr.14182) 801 : audit [DBG] from='client.15086 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:12.193 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:10:12.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:12 smithi152 bash[16344]: cluster 2024-01-24T03:10:11.367879+0000 mgr.smithi152.jkoscf (mgr.14182) 802 : cluster [DBG] pgmap v554: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-24T03:10:12.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:12 smithi195 bash[19846]: cluster 2024-01-24T03:10:11.367879+0000 mgr.smithi152.jkoscf (mgr.14182) 802 : cluster [DBG] pgmap v554: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-24T03:10:14.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:14 smithi195 bash[19846]: cluster 2024-01-24T03:10:13.368809+0000 mgr.smithi152.jkoscf (mgr.14182) 803 : cluster [DBG] pgmap v555: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-24T03:10:14.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:14 smithi152 bash[16344]: cluster 2024-01-24T03:10:13.368809+0000 mgr.smithi152.jkoscf (mgr.14182) 803 : cluster [DBG] pgmap v555: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-24T03:10:15.307 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:10:15.307 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:10:15.973 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:10:16.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:16 smithi195 bash[19846]: audit 2024-01-24T03:10:15.288162+0000 mgr.smithi152.jkoscf (mgr.14182) 804 : audit [DBG] from='client.15090 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:16.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:16 smithi195 bash[19846]: cluster 2024-01-24T03:10:15.369741+0000 mgr.smithi152.jkoscf (mgr.14182) 805 : cluster [DBG] pgmap v556: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 59 op/s 2024-01-24T03:10:16.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:16 smithi152 bash[16344]: audit 2024-01-24T03:10:15.288162+0000 mgr.smithi152.jkoscf (mgr.14182) 804 : audit [DBG] from='client.15090 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:16.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:16 smithi152 bash[16344]: cluster 2024-01-24T03:10:15.369741+0000 mgr.smithi152.jkoscf (mgr.14182) 805 : cluster [DBG] pgmap v556: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 59 op/s 2024-01-24T03:10:16.973 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:10:18.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:18 smithi152 bash[16344]: cluster 2024-01-24T03:10:17.371617+0000 mgr.smithi152.jkoscf (mgr.14182) 806 : cluster [DBG] pgmap v557: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 25 KiB/s rd, 0 B/s wr, 42 op/s 2024-01-24T03:10:18.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:18 smithi195 bash[19846]: cluster 2024-01-24T03:10:17.371617+0000 mgr.smithi152.jkoscf (mgr.14182) 806 : cluster [DBG] pgmap v557: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 25 KiB/s rd, 0 B/s wr, 42 op/s 2024-01-24T03:10:20.055 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:10:20.056 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:10:20.687 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:10:20.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:20 smithi195 bash[19846]: cluster 2024-01-24T03:10:19.373548+0000 mgr.smithi152.jkoscf (mgr.14182) 807 : cluster [DBG] pgmap v558: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:20.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:20 smithi152 bash[16344]: cluster 2024-01-24T03:10:19.373548+0000 mgr.smithi152.jkoscf (mgr.14182) 807 : cluster [DBG] pgmap v558: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:21.688 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:10:21.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:21 smithi195 bash[19846]: audit 2024-01-24T03:10:20.036616+0000 mgr.smithi152.jkoscf (mgr.14182) 808 : audit [DBG] from='client.15094 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:21.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:21 smithi152 bash[16344]: audit 2024-01-24T03:10:20.036616+0000 mgr.smithi152.jkoscf (mgr.14182) 808 : audit [DBG] from='client.15094 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:22.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:22 smithi195 bash[19846]: cluster 2024-01-24T03:10:21.375322+0000 mgr.smithi152.jkoscf (mgr.14182) 809 : cluster [DBG] pgmap v559: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:22.744 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:22 smithi152 bash[16344]: cluster 2024-01-24T03:10:21.375322+0000 mgr.smithi152.jkoscf (mgr.14182) 809 : cluster [DBG] pgmap v559: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:24.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:24 smithi195 bash[19846]: cluster 2024-01-24T03:10:23.376672+0000 mgr.smithi152.jkoscf (mgr.14182) 810 : cluster [DBG] pgmap v560: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:24.773 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:10:24.773 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:10:24.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:24 smithi152 bash[16344]: cluster 2024-01-24T03:10:23.376672+0000 mgr.smithi152.jkoscf (mgr.14182) 810 : cluster [DBG] pgmap v560: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:25.452 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:10:25.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:25 smithi195 bash[19846]: audit 2024-01-24T03:10:24.758719+0000 mgr.smithi152.jkoscf (mgr.14182) 811 : audit [DBG] from='client.15098 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:25 smithi152 bash[16344]: audit 2024-01-24T03:10:24.758719+0000 mgr.smithi152.jkoscf (mgr.14182) 811 : audit [DBG] from='client.15098 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:26.452 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:10:26.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:26 smithi195 bash[19846]: cluster 2024-01-24T03:10:25.378518+0000 mgr.smithi152.jkoscf (mgr.14182) 812 : cluster [DBG] pgmap v561: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:26.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:26 smithi152 bash[16344]: cluster 2024-01-24T03:10:25.378518+0000 mgr.smithi152.jkoscf (mgr.14182) 812 : cluster [DBG] pgmap v561: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:28.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:28 smithi195 bash[19846]: cluster 2024-01-24T03:10:27.380364+0000 mgr.smithi152.jkoscf (mgr.14182) 813 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:10:28.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:28 smithi152 bash[16344]: cluster 2024-01-24T03:10:27.380364+0000 mgr.smithi152.jkoscf (mgr.14182) 813 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:10:29.691 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:10:29.692 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:10:30.334 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:10:30.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:30 smithi152 bash[16344]: cluster 2024-01-24T03:10:29.381794+0000 mgr.smithi152.jkoscf (mgr.14182) 814 : cluster [DBG] pgmap v563: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:30.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:30 smithi152 bash[16344]: audit 2024-01-24T03:10:29.676920+0000 mgr.smithi152.jkoscf (mgr.14182) 815 : audit [DBG] from='client.15102 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:30.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:30 smithi195 bash[19846]: cluster 2024-01-24T03:10:29.381794+0000 mgr.smithi152.jkoscf (mgr.14182) 814 : cluster [DBG] pgmap v563: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:30.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:30 smithi195 bash[19846]: audit 2024-01-24T03:10:29.676920+0000 mgr.smithi152.jkoscf (mgr.14182) 815 : audit [DBG] from='client.15102 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:31.335 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:10:32.765 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:32 smithi152 bash[16344]: cluster 2024-01-24T03:10:31.383199+0000 mgr.smithi152.jkoscf (mgr.14182) 816 : cluster [DBG] pgmap v564: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:32.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:32 smithi195 bash[19846]: cluster 2024-01-24T03:10:31.383199+0000 mgr.smithi152.jkoscf (mgr.14182) 816 : cluster [DBG] pgmap v564: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:34.599 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:10:34.599 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:10:34.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:34 smithi152 bash[16344]: cluster 2024-01-24T03:10:33.384247+0000 mgr.smithi152.jkoscf (mgr.14182) 817 : cluster [DBG] pgmap v565: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:34.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:34 smithi195 bash[19846]: cluster 2024-01-24T03:10:33.384247+0000 mgr.smithi152.jkoscf (mgr.14182) 817 : cluster [DBG] pgmap v565: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:35.218 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:10:35.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:35 smithi152 bash[16344]: audit 2024-01-24T03:10:34.579550+0000 mgr.smithi152.jkoscf (mgr.14182) 818 : audit [DBG] from='client.15106 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:35.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:35 smithi195 bash[19846]: audit 2024-01-24T03:10:34.579550+0000 mgr.smithi152.jkoscf (mgr.14182) 818 : audit [DBG] from='client.15106 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:36.219 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:10:36.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:36 smithi152 bash[16344]: cluster 2024-01-24T03:10:35.386032+0000 mgr.smithi152.jkoscf (mgr.14182) 819 : cluster [DBG] pgmap v566: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:36.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:36 smithi195 bash[19846]: cluster 2024-01-24T03:10:35.386032+0000 mgr.smithi152.jkoscf (mgr.14182) 819 : cluster [DBG] pgmap v566: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:38.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:38 smithi152 bash[16344]: cluster 2024-01-24T03:10:37.387949+0000 mgr.smithi152.jkoscf (mgr.14182) 820 : cluster [DBG] pgmap v567: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:10:38.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:38 smithi195 bash[19846]: cluster 2024-01-24T03:10:37.387949+0000 mgr.smithi152.jkoscf (mgr.14182) 820 : cluster [DBG] pgmap v567: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:10:39.697 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:10:39.697 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:10:40.363 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:10:40.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:40 smithi152 bash[16344]: cluster 2024-01-24T03:10:39.389454+0000 mgr.smithi152.jkoscf (mgr.14182) 821 : cluster [DBG] pgmap v568: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:40.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:40 smithi152 bash[16344]: audit 2024-01-24T03:10:39.677865+0000 mgr.smithi152.jkoscf (mgr.14182) 822 : audit [DBG] from='client.15110 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:40.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:40 smithi195 bash[19846]: cluster 2024-01-24T03:10:39.389454+0000 mgr.smithi152.jkoscf (mgr.14182) 821 : cluster [DBG] pgmap v568: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:40.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:40 smithi195 bash[19846]: audit 2024-01-24T03:10:39.677865+0000 mgr.smithi152.jkoscf (mgr.14182) 822 : audit [DBG] from='client.15110 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:41.365 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:10:42.752 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:42 smithi152 bash[16344]: cluster 2024-01-24T03:10:41.391253+0000 mgr.smithi152.jkoscf (mgr.14182) 823 : cluster [DBG] pgmap v569: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:42.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:42 smithi195 bash[19846]: cluster 2024-01-24T03:10:41.391253+0000 mgr.smithi152.jkoscf (mgr.14182) 823 : cluster [DBG] pgmap v569: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:44.546 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:10:44.546 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:10:44.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:44 smithi152 bash[16344]: cluster 2024-01-24T03:10:43.392615+0000 mgr.smithi152.jkoscf (mgr.14182) 824 : cluster [DBG] pgmap v570: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:44.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:44 smithi195 bash[19846]: cluster 2024-01-24T03:10:43.392615+0000 mgr.smithi152.jkoscf (mgr.14182) 824 : cluster [DBG] pgmap v570: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:10:45.238 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:10:45.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:45 smithi152 bash[16344]: audit 2024-01-24T03:10:44.528902+0000 mgr.smithi152.jkoscf (mgr.14182) 825 : audit [DBG] from='client.15114 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:45.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:45 smithi195 bash[19846]: audit 2024-01-24T03:10:44.528902+0000 mgr.smithi152.jkoscf (mgr.14182) 825 : audit [DBG] from='client.15114 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:46.239 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:10:46.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:46 smithi152 bash[16344]: cluster 2024-01-24T03:10:45.394574+0000 mgr.smithi152.jkoscf (mgr.14182) 826 : cluster [DBG] pgmap v571: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 0 B/s wr, 2 op/s 2024-01-24T03:10:46.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:46 smithi195 bash[19846]: cluster 2024-01-24T03:10:45.394574+0000 mgr.smithi152.jkoscf (mgr.14182) 826 : cluster [DBG] pgmap v571: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 0 B/s wr, 2 op/s 2024-01-24T03:10:48.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:48 smithi152 bash[16344]: cluster 2024-01-24T03:10:47.396528+0000 mgr.smithi152.jkoscf (mgr.14182) 827 : cluster [DBG] pgmap v572: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:10:48.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:48 smithi195 bash[19846]: cluster 2024-01-24T03:10:47.396528+0000 mgr.smithi152.jkoscf (mgr.14182) 827 : cluster [DBG] pgmap v572: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:10:49.702 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:10:49.703 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:10:50.294 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:10:50.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:50 smithi152 bash[16344]: cluster 2024-01-24T03:10:49.397992+0000 mgr.smithi152.jkoscf (mgr.14182) 828 : cluster [DBG] pgmap v573: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:10:50.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:50 smithi152 bash[16344]: audit 2024-01-24T03:10:49.691044+0000 mgr.smithi152.jkoscf (mgr.14182) 829 : audit [DBG] from='client.15118 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:50.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:50 smithi195 bash[19846]: cluster 2024-01-24T03:10:49.397992+0000 mgr.smithi152.jkoscf (mgr.14182) 828 : cluster [DBG] pgmap v573: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:10:50.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:50 smithi195 bash[19846]: audit 2024-01-24T03:10:49.691044+0000 mgr.smithi152.jkoscf (mgr.14182) 829 : audit [DBG] from='client.15118 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:51.295 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:10:52.698 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:52 smithi152 bash[16344]: cluster 2024-01-24T03:10:51.399730+0000 mgr.smithi152.jkoscf (mgr.14182) 830 : cluster [DBG] pgmap v574: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:10:52.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:52 smithi195 bash[19846]: cluster 2024-01-24T03:10:51.399730+0000 mgr.smithi152.jkoscf (mgr.14182) 830 : cluster [DBG] pgmap v574: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:10:54.634 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:10:54.634 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:10:54.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:54 smithi152 bash[16344]: cluster 2024-01-24T03:10:53.401108+0000 mgr.smithi152.jkoscf (mgr.14182) 831 : cluster [DBG] pgmap v575: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:10:54.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:54 smithi195 bash[19846]: cluster 2024-01-24T03:10:53.401108+0000 mgr.smithi152.jkoscf (mgr.14182) 831 : cluster [DBG] pgmap v575: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:10:55.281 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:10:55.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:55 smithi195 bash[19846]: audit 2024-01-24T03:10:54.616874+0000 mgr.smithi152.jkoscf (mgr.14182) 832 : audit [DBG] from='client.15122 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:56.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:55 smithi152 bash[16344]: audit 2024-01-24T03:10:54.616874+0000 mgr.smithi152.jkoscf (mgr.14182) 832 : audit [DBG] from='client.15122 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:10:56.282 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:10:56.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:56 smithi195 bash[19846]: cluster 2024-01-24T03:10:55.402975+0000 mgr.smithi152.jkoscf (mgr.14182) 833 : cluster [DBG] pgmap v576: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:10:57.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:56 smithi152 bash[16344]: cluster 2024-01-24T03:10:55.402975+0000 mgr.smithi152.jkoscf (mgr.14182) 833 : cluster [DBG] pgmap v576: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:10:57.686 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:57 smithi152 bash[16344]: audit 2024-01-24T03:10:57.358604+0000 mon.smithi152 (mon.0) 866 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:10:57.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:57 smithi195 bash[19846]: audit 2024-01-24T03:10:57.358604+0000 mon.smithi152 (mon.0) 866 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:10:58.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:58 smithi195 bash[19846]: cluster 2024-01-24T03:10:57.404436+0000 mgr.smithi152.jkoscf (mgr.14182) 834 : cluster [DBG] pgmap v577: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 0 B/s wr, 4 op/s 2024-01-24T03:10:58.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:58 smithi195 bash[19846]: audit 2024-01-24T03:10:57.666091+0000 mon.smithi152 (mon.0) 867 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:10:58.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:58 smithi195 bash[19846]: audit 2024-01-24T03:10:57.667411+0000 mon.smithi152 (mon.0) 868 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:10:58.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:58 smithi195 bash[19846]: audit 2024-01-24T03:10:57.673786+0000 mon.smithi152 (mon.0) 869 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:10:58.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:58 smithi195 bash[19846]: cluster 2024-01-24T03:10:57.674515+0000 mgr.smithi152.jkoscf (mgr.14182) 835 : cluster [DBG] pgmap v578: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:10:58.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:58 smithi195 bash[19846]: audit 2024-01-24T03:10:57.679410+0000 mon.smithi152 (mon.0) 870 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:10:58.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:58 smithi195 bash[19846]: audit 2024-01-24T03:10:57.692588+0000 mon.smithi152 (mon.0) 871 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:10:58.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:58 smithi195 bash[19846]: cephadm 2024-01-24T03:10:57.695349+0000 mgr.smithi152.jkoscf (mgr.14182) 836 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.byheww on smithi195 2024-01-24T03:10:59.032 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:58 smithi152 bash[16344]: cluster 2024-01-24T03:10:57.404436+0000 mgr.smithi152.jkoscf (mgr.14182) 834 : cluster [DBG] pgmap v577: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 0 B/s wr, 4 op/s 2024-01-24T03:10:59.032 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:58 smithi152 bash[16344]: audit 2024-01-24T03:10:57.666091+0000 mon.smithi152 (mon.0) 867 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:10:59.032 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:58 smithi152 bash[16344]: audit 2024-01-24T03:10:57.667411+0000 mon.smithi152 (mon.0) 868 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:10:59.033 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:58 smithi152 bash[16344]: audit 2024-01-24T03:10:57.673786+0000 mon.smithi152 (mon.0) 869 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:10:59.033 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:58 smithi152 bash[16344]: cluster 2024-01-24T03:10:57.674515+0000 mgr.smithi152.jkoscf (mgr.14182) 835 : cluster [DBG] pgmap v578: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:10:59.033 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:58 smithi152 bash[16344]: audit 2024-01-24T03:10:57.679410+0000 mon.smithi152 (mon.0) 870 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:10:59.033 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:58 smithi152 bash[16344]: audit 2024-01-24T03:10:57.692588+0000 mon.smithi152 (mon.0) 871 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:10:59.033 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:58 smithi152 bash[16344]: cephadm 2024-01-24T03:10:57.695349+0000 mgr.smithi152.jkoscf (mgr.14182) 836 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.byheww on smithi195 2024-01-24T03:10:59.459 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:10:59.459 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:08:49.105934Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.nzxzhc on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:10:59.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:59 smithi152 bash[16344]: cluster 2024-01-24T03:10:58.671117+0000 mon.smithi152 (mon.0) 872 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:10:59.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:10:59 smithi152 bash[16344]: cluster 2024-01-24T03:10:58.671178+0000 mon.smithi152 (mon.0) 873 : cluster [INF] Cluster is now healthy 2024-01-24T03:10:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:59 smithi195 bash[19846]: cluster 2024-01-24T03:10:58.671117+0000 mon.smithi152 (mon.0) 872 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:10:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:10:59 smithi195 bash[19846]: cluster 2024-01-24T03:10:58.671178+0000 mon.smithi152 (mon.0) 873 : cluster [INF] Cluster is now healthy 2024-01-24T03:11:00.098 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:11:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:00 smithi195 bash[19846]: audit 2024-01-24T03:10:59.447624+0000 mgr.smithi152.jkoscf (mgr.14182) 837 : audit [DBG] from='client.15126 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:00.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:00 smithi195 bash[19846]: cluster 2024-01-24T03:10:59.675967+0000 mgr.smithi152.jkoscf (mgr.14182) 838 : cluster [DBG] pgmap v579: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:11:01.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:00 smithi152 bash[16344]: audit 2024-01-24T03:10:59.447624+0000 mgr.smithi152.jkoscf (mgr.14182) 837 : audit [DBG] from='client.15126 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:01.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:00 smithi152 bash[16344]: cluster 2024-01-24T03:10:59.675967+0000 mgr.smithi152.jkoscf (mgr.14182) 838 : cluster [DBG] pgmap v579: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:11:01.098 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:11:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:01 smithi195 bash[19846]: audit 2024-01-24T03:11:01.637101+0000 mon.smithi152 (mon.0) 874 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.byheww"}]: dispatch 2024-01-24T03:11:02.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:01 smithi152 bash[16344]: audit 2024-01-24T03:11:01.637101+0000 mon.smithi152 (mon.0) 874 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.byheww"}]: dispatch 2024-01-24T03:11:03.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: cephadm 2024-01-24T03:11:01.636060+0000 mgr.smithi152.jkoscf (mgr.14182) 839 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww 2024-01-24T03:11:03.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.byheww ... 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:11:03.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:11:03.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww 2024-01-24T03:11:03.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:11:03.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww 2024-01-24T03:11:03.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:11:03.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.byheww ... 2024-01-24T03:11:03.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:03.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:11:03.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:11:03.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:11:03.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:03.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: cephadm 2024-01-24T03:11:01.636493+0000 mgr.smithi152.jkoscf (mgr.14182) 840 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: cephadm 2024-01-24T03:11:01.638879+0000 mgr.smithi152.jkoscf (mgr.14182) 841 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.byheww ... 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: cephadm 2024-01-24T03:11:01.643755+0000 mgr.smithi152.jkoscf (mgr.14182) 842 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.aartyp on smithi152 2024-01-24T03:11:03.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:02 smithi152 bash[16344]: cluster 2024-01-24T03:11:01.677363+0000 mgr.smithi152.jkoscf (mgr.14182) 843 : cluster [DBG] pgmap v580: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:11:03.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: cephadm 2024-01-24T03:11:01.636060+0000 mgr.smithi152.jkoscf (mgr.14182) 839 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww 2024-01-24T03:11:03.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:11:03.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww 2024-01-24T03:11:03.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:11:03.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.byheww ... 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:11:03.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.byheww ... 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: cephadm 2024-01-24T03:11:01.636493+0000 mgr.smithi152.jkoscf (mgr.14182) 840 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: cephadm 2024-01-24T03:11:01.638879+0000 mgr.smithi152.jkoscf (mgr.14182) 841 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww 2024-01-24T03:11:03.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:11:03.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww 2024-01-24T03:11:03.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.byheww ... 2024-01-24T03:11:03.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:03.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:11:03.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:11:03.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:11:03.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:03.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: cephadm 2024-01-24T03:11:01.643755+0000 mgr.smithi152.jkoscf (mgr.14182) 842 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.aartyp on smithi152 2024-01-24T03:11:03.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:02 smithi195 bash[19846]: cluster 2024-01-24T03:11:01.677363+0000 mgr.smithi152.jkoscf (mgr.14182) 843 : cluster [DBG] pgmap v580: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:11:04.439 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:11:04.439 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:53.532328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.txofyh on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-txofyh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.txofyh\nDeploy daemon haproxy.nfs.foo.smithi195.txofyh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.351542Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.tjcsnt on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-tjcsnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.tjcsnt\nDeploy daemon haproxy.nfs.foo.smithi152.tjcsnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:09:57.353632Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.vmbnyl on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:11:04.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:04 smithi195 bash[19846]: cluster 2024-01-24T03:11:03.678471+0000 mgr.smithi152.jkoscf (mgr.14182) 844 : cluster [DBG] pgmap v581: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:11:04.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:04 smithi152 bash[16344]: cluster 2024-01-24T03:11:03.678471+0000 mgr.smithi152.jkoscf (mgr.14182) 844 : cluster [DBG] pgmap v581: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:11:05.106 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:11:05.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:05 smithi195 bash[19846]: audit 2024-01-24T03:11:04.421239+0000 mgr.smithi152.jkoscf (mgr.14182) 845 : audit [DBG] from='client.15130 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:05.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:05 smithi152 bash[16344]: audit 2024-01-24T03:11:04.421239+0000 mgr.smithi152.jkoscf (mgr.14182) 845 : audit [DBG] from='client.15130 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:06.107 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:11:06.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: cephadm 2024-01-24T03:11:05.560765+0000 mgr.smithi152.jkoscf (mgr.14182) 846 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp 2024-01-24T03:11:06.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:11:06.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp 2024-01-24T03:11:06.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:11:06.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.aartyp ... 2024-01-24T03:11:06.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:06.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:11:06.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:11:06.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:11:06.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:06.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:11:06.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:11:06.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:11:06.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:11:06.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:11:06.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp 2024-01-24T03:11:06.745 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:11:06.746 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp 2024-01-24T03:11:06.746 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.746 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:11:06.746 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.746 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.aartyp ... 2024-01-24T03:11:06.746 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:06.746 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:11:06.747 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:11:06.747 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:11:06.747 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:06.747 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: cephadm 2024-01-24T03:11:05.561288+0000 mgr.smithi152.jkoscf (mgr.14182) 847 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.747 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: audit 2024-01-24T03:11:05.562063+0000 mon.smithi152 (mon.0) 875 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.aartyp"}]: dispatch 2024-01-24T03:11:06.747 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: cephadm 2024-01-24T03:11:05.563833+0000 mgr.smithi152.jkoscf (mgr.14182) 848 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp 2024-01-24T03:11:06.747 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:11:06.748 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp 2024-01-24T03:11:06.748 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.748 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:11:06.748 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.748 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.aartyp ... 2024-01-24T03:11:06.748 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:06.749 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:11:06.749 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:11:06.749 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:11:06.749 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:06.749 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: cephadm 2024-01-24T03:11:05.567912+0000 mgr.smithi152.jkoscf (mgr.14182) 849 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:11:06.749 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: cephadm 2024-01-24T03:11:05.570877+0000 mgr.smithi152.jkoscf (mgr.14182) 850 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:11:06.749 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:06 smithi195 bash[19846]: cluster 2024-01-24T03:11:05.573464+0000 mgr.smithi152.jkoscf (mgr.14182) 851 : cluster [DBG] pgmap v582: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:11:06.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: cephadm 2024-01-24T03:11:05.560765+0000 mgr.smithi152.jkoscf (mgr.14182) 846 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp 2024-01-24T03:11:06.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:11:06.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp 2024-01-24T03:11:06.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.aartyp ... 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp 2024-01-24T03:11:06.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.aartyp ... 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: cephadm 2024-01-24T03:11:05.561288+0000 mgr.smithi152.jkoscf (mgr.14182) 847 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: audit 2024-01-24T03:11:05.562063+0000 mon.smithi152 (mon.0) 875 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.aartyp"}]: dispatch 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: cephadm 2024-01-24T03:11:05.563833+0000 mgr.smithi152.jkoscf (mgr.14182) 848 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp 2024-01-24T03:11:06.838 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:11:06.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp 2024-01-24T03:11:06.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:11:06.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp 2024-01-24T03:11:06.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.aartyp ... 2024-01-24T03:11:06.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:06.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:11:06.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:11:06.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:11:06.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:11:06.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: cephadm 2024-01-24T03:11:05.567912+0000 mgr.smithi152.jkoscf (mgr.14182) 849 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:11:06.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: cephadm 2024-01-24T03:11:05.570877+0000 mgr.smithi152.jkoscf (mgr.14182) 850 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:11:06.839 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:06 smithi152 bash[16344]: cluster 2024-01-24T03:11:05.573464+0000 mgr.smithi152.jkoscf (mgr.14182) 851 : cluster [DBG] pgmap v582: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:11:07.599 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:07 smithi152 bash[16344]: cluster 2024-01-24T03:11:06.431134+0000 mon.smithi152 (mon.0) 876 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:11:07.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:07 smithi195 bash[19846]: cluster 2024-01-24T03:11:06.431134+0000 mon.smithi152 (mon.0) 876 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:11:08.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:08 smithi195 bash[19846]: audit 2024-01-24T03:11:07.468428+0000 mon.smithi152 (mon.0) 877 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:11:08.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:08 smithi195 bash[19846]: cluster 2024-01-24T03:11:07.575185+0000 mgr.smithi152.jkoscf (mgr.14182) 852 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:11:08.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:08 smithi152 bash[16344]: audit 2024-01-24T03:11:07.468428+0000 mon.smithi152 (mon.0) 877 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:11:08.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:08 smithi152 bash[16344]: cluster 2024-01-24T03:11:07.575185+0000 mgr.smithi152.jkoscf (mgr.14182) 852 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:11:09.344 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:11:09.344 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:11:09.966 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:11:10.967 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:11:10.978 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:10 smithi152 bash[16344]: audit 2024-01-24T03:11:09.321602+0000 mgr.smithi152.jkoscf (mgr.14182) 853 : audit [DBG] from='client.15134 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:10.978 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:10 smithi152 bash[16344]: cluster 2024-01-24T03:11:09.576824+0000 mgr.smithi152.jkoscf (mgr.14182) 854 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:11:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:10 smithi195 bash[19846]: audit 2024-01-24T03:11:09.321602+0000 mgr.smithi152.jkoscf (mgr.14182) 853 : audit [DBG] from='client.15134 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:10.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:10 smithi195 bash[19846]: cluster 2024-01-24T03:11:09.576824+0000 mgr.smithi152.jkoscf (mgr.14182) 854 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:11:12.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:12 smithi152 bash[16344]: cluster 2024-01-24T03:11:11.578687+0000 mgr.smithi152.jkoscf (mgr.14182) 855 : cluster [DBG] pgmap v585: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:11:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:12 smithi195 bash[19846]: cluster 2024-01-24T03:11:11.578687+0000 mgr.smithi152.jkoscf (mgr.14182) 855 : cluster [DBG] pgmap v585: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:11:14.310 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:11:14.310 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:11:14.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:14 smithi195 bash[19846]: cluster 2024-01-24T03:11:13.580065+0000 mgr.smithi152.jkoscf (mgr.14182) 856 : cluster [DBG] pgmap v586: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:11:14.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:14 smithi152 bash[16344]: cluster 2024-01-24T03:11:13.580065+0000 mgr.smithi152.jkoscf (mgr.14182) 856 : cluster [DBG] pgmap v586: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:11:14.973 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:11:15.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:15 smithi195 bash[19846]: audit 2024-01-24T03:11:14.298187+0000 mgr.smithi152.jkoscf (mgr.14182) 857 : audit [DBG] from='client.15138 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:15.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:15 smithi152 bash[16344]: audit 2024-01-24T03:11:14.298187+0000 mgr.smithi152.jkoscf (mgr.14182) 857 : audit [DBG] from='client.15138 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:15.974 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:11:16.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:16 smithi195 bash[19846]: cluster 2024-01-24T03:11:15.582086+0000 mgr.smithi152.jkoscf (mgr.14182) 858 : cluster [DBG] pgmap v587: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:11:16.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:16 smithi152 bash[16344]: cluster 2024-01-24T03:11:15.582086+0000 mgr.smithi152.jkoscf (mgr.14182) 858 : cluster [DBG] pgmap v587: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:11:18.902 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:18 smithi152 bash[16344]: cluster 2024-01-24T03:11:17.583984+0000 mgr.smithi152.jkoscf (mgr.14182) 859 : cluster [DBG] pgmap v588: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:11:18.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:18 smithi195 bash[19846]: cluster 2024-01-24T03:11:17.583984+0000 mgr.smithi152.jkoscf (mgr.14182) 859 : cluster [DBG] pgmap v588: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:11:19.247 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:11:19.247 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:11:19.885 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:11:20.886 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:11:20.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:20 smithi195 bash[19846]: audit 2024-01-24T03:11:19.227804+0000 mgr.smithi152.jkoscf (mgr.14182) 860 : audit [DBG] from='client.15142 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:20.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:20 smithi195 bash[19846]: cluster 2024-01-24T03:11:19.585722+0000 mgr.smithi152.jkoscf (mgr.14182) 861 : cluster [DBG] pgmap v589: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:21.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:20 smithi152 bash[16344]: audit 2024-01-24T03:11:19.227804+0000 mgr.smithi152.jkoscf (mgr.14182) 860 : audit [DBG] from='client.15142 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:21.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:20 smithi152 bash[16344]: cluster 2024-01-24T03:11:19.585722+0000 mgr.smithi152.jkoscf (mgr.14182) 861 : cluster [DBG] pgmap v589: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:22.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:22 smithi195 bash[19846]: cluster 2024-01-24T03:11:21.587518+0000 mgr.smithi152.jkoscf (mgr.14182) 862 : cluster [DBG] pgmap v590: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:23.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:22 smithi152 bash[16344]: cluster 2024-01-24T03:11:21.587518+0000 mgr.smithi152.jkoscf (mgr.14182) 862 : cluster [DBG] pgmap v590: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:24.198 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:11:24.198 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:11:24.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:24 smithi152 bash[16344]: cluster 2024-01-24T03:11:23.589005+0000 mgr.smithi152.jkoscf (mgr.14182) 863 : cluster [DBG] pgmap v591: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:24.740 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:11:24.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:24 smithi195 bash[19846]: cluster 2024-01-24T03:11:23.589005+0000 mgr.smithi152.jkoscf (mgr.14182) 863 : cluster [DBG] pgmap v591: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:25.741 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:11:25.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:25 smithi195 bash[19846]: audit 2024-01-24T03:11:24.178996+0000 mgr.smithi152.jkoscf (mgr.14182) 864 : audit [DBG] from='client.15146 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:25.753 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:25 smithi152 bash[16344]: audit 2024-01-24T03:11:24.178996+0000 mgr.smithi152.jkoscf (mgr.14182) 864 : audit [DBG] from='client.15146 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:26.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:26 smithi195 bash[19846]: cluster 2024-01-24T03:11:25.591346+0000 mgr.smithi152.jkoscf (mgr.14182) 865 : cluster [DBG] pgmap v592: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:26.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:26 smithi152 bash[16344]: cluster 2024-01-24T03:11:25.591346+0000 mgr.smithi152.jkoscf (mgr.14182) 865 : cluster [DBG] pgmap v592: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:28.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:28 smithi152 bash[16344]: cluster 2024-01-24T03:11:27.592929+0000 mgr.smithi152.jkoscf (mgr.14182) 866 : cluster [DBG] pgmap v593: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:11:28.915 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:11:28.916 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:11:28.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:28 smithi195 bash[19846]: cluster 2024-01-24T03:11:27.592929+0000 mgr.smithi152.jkoscf (mgr.14182) 866 : cluster [DBG] pgmap v593: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:11:29.522 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:11:30.523 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:11:30.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:30 smithi152 bash[16344]: audit 2024-01-24T03:11:28.903980+0000 mgr.smithi152.jkoscf (mgr.14182) 867 : audit [DBG] from='client.15150 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:30.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:30 smithi152 bash[16344]: cluster 2024-01-24T03:11:29.594678+0000 mgr.smithi152.jkoscf (mgr.14182) 868 : cluster [DBG] pgmap v594: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:30.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:30 smithi195 bash[19846]: audit 2024-01-24T03:11:28.903980+0000 mgr.smithi152.jkoscf (mgr.14182) 867 : audit [DBG] from='client.15150 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:30.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:30 smithi195 bash[19846]: cluster 2024-01-24T03:11:29.594678+0000 mgr.smithi152.jkoscf (mgr.14182) 868 : cluster [DBG] pgmap v594: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:32.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:32 smithi195 bash[19846]: cluster 2024-01-24T03:11:31.595654+0000 mgr.smithi152.jkoscf (mgr.14182) 869 : cluster [DBG] pgmap v595: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:33.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:32 smithi152 bash[16344]: cluster 2024-01-24T03:11:31.595654+0000 mgr.smithi152.jkoscf (mgr.14182) 869 : cluster [DBG] pgmap v595: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:33.713 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:11:33.714 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:11:34.293 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:11:34.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:34 smithi152 bash[16344]: cluster 2024-01-24T03:11:33.596875+0000 mgr.smithi152.jkoscf (mgr.14182) 870 : cluster [DBG] pgmap v596: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:34.586 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:34 smithi152 bash[16344]: audit 2024-01-24T03:11:33.701656+0000 mgr.smithi152.jkoscf (mgr.14182) 871 : audit [DBG] from='client.15154 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:34.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:34 smithi195 bash[19846]: cluster 2024-01-24T03:11:33.596875+0000 mgr.smithi152.jkoscf (mgr.14182) 870 : cluster [DBG] pgmap v596: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:34.744 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:34 smithi195 bash[19846]: audit 2024-01-24T03:11:33.701656+0000 mgr.smithi152.jkoscf (mgr.14182) 871 : audit [DBG] from='client.15154 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:35.295 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:11:36.724 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:36 smithi152 bash[16344]: cluster 2024-01-24T03:11:35.599119+0000 mgr.smithi152.jkoscf (mgr.14182) 872 : cluster [DBG] pgmap v597: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:36.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:36 smithi195 bash[19846]: cluster 2024-01-24T03:11:35.599119+0000 mgr.smithi152.jkoscf (mgr.14182) 872 : cluster [DBG] pgmap v597: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:38.506 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:11:38.507 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:11:38.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:38 smithi152 bash[16344]: cluster 2024-01-24T03:11:37.600336+0000 mgr.smithi152.jkoscf (mgr.14182) 873 : cluster [DBG] pgmap v598: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:11:38.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:38 smithi195 bash[19846]: cluster 2024-01-24T03:11:37.600336+0000 mgr.smithi152.jkoscf (mgr.14182) 873 : cluster [DBG] pgmap v598: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:11:39.140 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:11:39.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:39 smithi195 bash[19846]: audit 2024-01-24T03:11:38.486775+0000 mgr.smithi152.jkoscf (mgr.14182) 874 : audit [DBG] from='client.15158 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:40.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:39 smithi152 bash[16344]: audit 2024-01-24T03:11:38.486775+0000 mgr.smithi152.jkoscf (mgr.14182) 874 : audit [DBG] from='client.15158 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:40.141 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:11:40.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:40 smithi195 bash[19846]: cluster 2024-01-24T03:11:39.601879+0000 mgr.smithi152.jkoscf (mgr.14182) 875 : cluster [DBG] pgmap v599: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:41.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:40 smithi152 bash[16344]: cluster 2024-01-24T03:11:39.601879+0000 mgr.smithi152.jkoscf (mgr.14182) 875 : cluster [DBG] pgmap v599: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:42.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:42 smithi195 bash[19846]: cluster 2024-01-24T03:11:41.603369+0000 mgr.smithi152.jkoscf (mgr.14182) 876 : cluster [DBG] pgmap v600: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:43.008 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:42 smithi152 bash[16344]: cluster 2024-01-24T03:11:41.603369+0000 mgr.smithi152.jkoscf (mgr.14182) 876 : cluster [DBG] pgmap v600: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:43.471 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:11:43.471 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:11:44.094 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:11:44.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:44 smithi195 bash[19846]: audit 2024-01-24T03:11:43.455934+0000 mgr.smithi152.jkoscf (mgr.14182) 877 : audit [DBG] from='client.15162 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:44.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:44 smithi195 bash[19846]: cluster 2024-01-24T03:11:43.604166+0000 mgr.smithi152.jkoscf (mgr.14182) 878 : cluster [DBG] pgmap v601: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:44.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:44 smithi152 bash[16344]: audit 2024-01-24T03:11:43.455934+0000 mgr.smithi152.jkoscf (mgr.14182) 877 : audit [DBG] from='client.15162 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:44.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:44 smithi152 bash[16344]: cluster 2024-01-24T03:11:43.604166+0000 mgr.smithi152.jkoscf (mgr.14182) 878 : cluster [DBG] pgmap v601: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:45.094 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:11:46.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:46 smithi152 bash[16344]: cluster 2024-01-24T03:11:45.606334+0000 mgr.smithi152.jkoscf (mgr.14182) 879 : cluster [DBG] pgmap v602: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:46.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:46 smithi195 bash[19846]: cluster 2024-01-24T03:11:45.606334+0000 mgr.smithi152.jkoscf (mgr.14182) 879 : cluster [DBG] pgmap v602: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:48.386 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:11:48.386 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:11:48.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:48 smithi152 bash[16344]: cluster 2024-01-24T03:11:47.607639+0000 mgr.smithi152.jkoscf (mgr.14182) 880 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:11:48.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:48 smithi195 bash[19846]: cluster 2024-01-24T03:11:47.607639+0000 mgr.smithi152.jkoscf (mgr.14182) 880 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:11:49.024 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:11:49.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:49 smithi195 bash[19846]: audit 2024-01-24T03:11:48.366721+0000 mgr.smithi152.jkoscf (mgr.14182) 881 : audit [DBG] from='client.15166 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:50.025 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:11:50.038 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:49 smithi152 bash[16344]: audit 2024-01-24T03:11:48.366721+0000 mgr.smithi152.jkoscf (mgr.14182) 881 : audit [DBG] from='client.15166 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:50.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:50 smithi195 bash[19846]: cluster 2024-01-24T03:11:49.609217+0000 mgr.smithi152.jkoscf (mgr.14182) 882 : cluster [DBG] pgmap v604: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:51.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:50 smithi152 bash[16344]: cluster 2024-01-24T03:11:49.609217+0000 mgr.smithi152.jkoscf (mgr.14182) 882 : cluster [DBG] pgmap v604: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:52.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:52 smithi195 bash[19846]: cluster 2024-01-24T03:11:51.610373+0000 mgr.smithi152.jkoscf (mgr.14182) 883 : cluster [DBG] pgmap v605: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:53.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:52 smithi152 bash[16344]: cluster 2024-01-24T03:11:51.610373+0000 mgr.smithi152.jkoscf (mgr.14182) 883 : cluster [DBG] pgmap v605: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:53.188 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:11:53.188 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:11:53.820 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:11:54.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:54 smithi195 bash[19846]: audit 2024-01-24T03:11:53.175913+0000 mgr.smithi152.jkoscf (mgr.14182) 884 : audit [DBG] from='client.15170 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:54.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:54 smithi195 bash[19846]: cluster 2024-01-24T03:11:53.611139+0000 mgr.smithi152.jkoscf (mgr.14182) 885 : cluster [DBG] pgmap v606: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:54.821 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:11:54.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:54 smithi152 bash[16344]: audit 2024-01-24T03:11:53.175913+0000 mgr.smithi152.jkoscf (mgr.14182) 884 : audit [DBG] from='client.15170 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:11:54.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:54 smithi152 bash[16344]: cluster 2024-01-24T03:11:53.611139+0000 mgr.smithi152.jkoscf (mgr.14182) 885 : cluster [DBG] pgmap v606: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:56.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:56 smithi195 bash[19846]: cluster 2024-01-24T03:11:55.613317+0000 mgr.smithi152.jkoscf (mgr.14182) 886 : cluster [DBG] pgmap v607: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:57.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:56 smithi152 bash[16344]: cluster 2024-01-24T03:11:55.613317+0000 mgr.smithi152.jkoscf (mgr.14182) 886 : cluster [DBG] pgmap v607: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:11:58.180 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:11:58.180 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:11:58.793 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:11:58.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:58 smithi195 bash[19846]: cluster 2024-01-24T03:11:57.614024+0000 mgr.smithi152.jkoscf (mgr.14182) 887 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:11:59.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:58 smithi152 bash[16344]: cluster 2024-01-24T03:11:57.614024+0000 mgr.smithi152.jkoscf (mgr.14182) 887 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:11:59.793 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:11:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:11:59 smithi195 bash[19846]: audit 2024-01-24T03:11:58.162056+0000 mgr.smithi152.jkoscf (mgr.14182) 888 : audit [DBG] from='client.15174 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:00.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:11:59 smithi152 bash[16344]: audit 2024-01-24T03:11:58.162056+0000 mgr.smithi152.jkoscf (mgr.14182) 888 : audit [DBG] from='client.15174 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:00.952 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:00 smithi152 bash[16344]: cluster 2024-01-24T03:11:59.615627+0000 mgr.smithi152.jkoscf (mgr.14182) 889 : cluster [DBG] pgmap v609: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:00.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:00 smithi195 bash[19846]: cluster 2024-01-24T03:11:59.615627+0000 mgr.smithi152.jkoscf (mgr.14182) 889 : cluster [DBG] pgmap v609: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:02.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:02 smithi152 bash[16344]: cluster 2024-01-24T03:12:01.617351+0000 mgr.smithi152.jkoscf (mgr.14182) 890 : cluster [DBG] pgmap v610: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:02.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:02 smithi195 bash[19846]: cluster 2024-01-24T03:12:01.617351+0000 mgr.smithi152.jkoscf (mgr.14182) 890 : cluster [DBG] pgmap v610: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:02.992 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:12:02.992 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:12:03.598 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:12:04.599 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:12:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:04 smithi195 bash[19846]: audit 2024-01-24T03:12:02.979220+0000 mgr.smithi152.jkoscf (mgr.14182) 891 : audit [DBG] from='client.15178 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:04.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:04 smithi195 bash[19846]: cluster 2024-01-24T03:12:03.618716+0000 mgr.smithi152.jkoscf (mgr.14182) 892 : cluster [DBG] pgmap v611: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:04.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:04 smithi152 bash[16344]: audit 2024-01-24T03:12:02.979220+0000 mgr.smithi152.jkoscf (mgr.14182) 891 : audit [DBG] from='client.15178 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:04.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:04 smithi152 bash[16344]: cluster 2024-01-24T03:12:03.618716+0000 mgr.smithi152.jkoscf (mgr.14182) 892 : cluster [DBG] pgmap v611: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:05.724 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:05 smithi152 bash[16344]: audit 2024-01-24T03:12:05.574470+0000 mon.smithi152 (mon.0) 878 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:12:05.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:05 smithi195 bash[19846]: audit 2024-01-24T03:12:05.574470+0000 mon.smithi152 (mon.0) 878 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:12:06.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:06 smithi195 bash[19846]: cluster 2024-01-24T03:12:05.620063+0000 mgr.smithi152.jkoscf (mgr.14182) 893 : cluster [DBG] pgmap v612: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:07.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:06 smithi152 bash[16344]: cluster 2024-01-24T03:12:05.620063+0000 mgr.smithi152.jkoscf (mgr.14182) 893 : cluster [DBG] pgmap v612: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:07.870 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:12:07.870 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:12:08.444 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:12:08.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:08 smithi152 bash[16344]: cluster 2024-01-24T03:12:07.621348+0000 mgr.smithi152.jkoscf (mgr.14182) 894 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:12:08.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:08 smithi195 bash[19846]: cluster 2024-01-24T03:12:07.621348+0000 mgr.smithi152.jkoscf (mgr.14182) 894 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:12:09.446 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:12:09.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:09 smithi152 bash[16344]: audit 2024-01-24T03:12:07.857026+0000 mgr.smithi152.jkoscf (mgr.14182) 895 : audit [DBG] from='client.15182 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:09 smithi195 bash[19846]: audit 2024-01-24T03:12:07.857026+0000 mgr.smithi152.jkoscf (mgr.14182) 895 : audit [DBG] from='client.15182 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:10.932 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:10 smithi152 bash[16344]: cluster 2024-01-24T03:12:09.623069+0000 mgr.smithi152.jkoscf (mgr.14182) 896 : cluster [DBG] pgmap v614: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:10 smithi195 bash[19846]: cluster 2024-01-24T03:12:09.623069+0000 mgr.smithi152.jkoscf (mgr.14182) 896 : cluster [DBG] pgmap v614: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:12.782 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:12:12.782 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:01:45.188247Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:01:45.188497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:01:45.188743Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:09:57.355182Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.gvbmbq on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:01:45.187984Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:01:45.187608Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:01:45.190511Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:01:45.188985Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:01:45.189227Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:01:45.190215Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:12:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:12 smithi195 bash[19846]: cluster 2024-01-24T03:12:11.624860+0000 mgr.smithi152.jkoscf (mgr.14182) 897 : cluster [DBG] pgmap v615: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:13.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:12 smithi152 bash[16344]: cluster 2024-01-24T03:12:11.624860+0000 mgr.smithi152.jkoscf (mgr.14182) 897 : cluster [DBG] pgmap v615: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:13.479 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:12:13.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:13 smithi152 bash[16344]: audit 2024-01-24T03:12:12.768450+0000 mgr.smithi152.jkoscf (mgr.14182) 898 : audit [DBG] from='client.15186 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:13.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:13 smithi152 bash[16344]: audit 2024-01-24T03:12:13.299890+0000 mon.smithi152 (mon.0) 879 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:12:13.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:13 smithi152 bash[16344]: audit 2024-01-24T03:12:13.591973+0000 mon.smithi152 (mon.0) 880 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:12:13.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:13 smithi152 bash[16344]: audit 2024-01-24T03:12:13.593728+0000 mon.smithi152 (mon.0) 881 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:12:13.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:13 smithi152 bash[16344]: audit 2024-01-24T03:12:13.600906+0000 mon.smithi152 (mon.0) 882 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:12:13.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:13 smithi152 bash[16344]: audit 2024-01-24T03:12:13.608280+0000 mon.smithi152 (mon.0) 883 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:12:13.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:13 smithi152 bash[16344]: audit 2024-01-24T03:12:13.622647+0000 mon.smithi152 (mon.0) 884 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:12:13.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:13 smithi195 bash[19846]: audit 2024-01-24T03:12:12.768450+0000 mgr.smithi152.jkoscf (mgr.14182) 898 : audit [DBG] from='client.15186 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:13 smithi195 bash[19846]: audit 2024-01-24T03:12:13.299890+0000 mon.smithi152 (mon.0) 879 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:12:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:13 smithi195 bash[19846]: audit 2024-01-24T03:12:13.591973+0000 mon.smithi152 (mon.0) 880 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:12:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:13 smithi195 bash[19846]: audit 2024-01-24T03:12:13.593728+0000 mon.smithi152 (mon.0) 881 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:12:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:13 smithi195 bash[19846]: audit 2024-01-24T03:12:13.600906+0000 mon.smithi152 (mon.0) 882 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:12:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:13 smithi195 bash[19846]: audit 2024-01-24T03:12:13.608280+0000 mon.smithi152 (mon.0) 883 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:12:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:13 smithi195 bash[19846]: audit 2024-01-24T03:12:13.622647+0000 mon.smithi152 (mon.0) 884 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:12:14.480 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:12:14.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:14 smithi152 bash[16344]: cluster 2024-01-24T03:12:13.601987+0000 mgr.smithi152.jkoscf (mgr.14182) 899 : cluster [DBG] pgmap v616: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:14.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:14 smithi152 bash[16344]: cephadm 2024-01-24T03:12:13.625763+0000 mgr.smithi152.jkoscf (mgr.14182) 900 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.fybfms on smithi195 2024-01-24T03:12:14.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:14 smithi152 bash[16344]: cluster 2024-01-24T03:12:14.598634+0000 mon.smithi152 (mon.0) 885 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:12:14.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:14 smithi152 bash[16344]: cluster 2024-01-24T03:12:14.598704+0000 mon.smithi152 (mon.0) 886 : cluster [INF] Cluster is now healthy 2024-01-24T03:12:14.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:14 smithi195 bash[19846]: cluster 2024-01-24T03:12:13.601987+0000 mgr.smithi152.jkoscf (mgr.14182) 899 : cluster [DBG] pgmap v616: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:14.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:14 smithi195 bash[19846]: cephadm 2024-01-24T03:12:13.625763+0000 mgr.smithi152.jkoscf (mgr.14182) 900 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.fybfms on smithi195 2024-01-24T03:12:14.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:14 smithi195 bash[19846]: cluster 2024-01-24T03:12:14.598634+0000 mon.smithi152 (mon.0) 885 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:12:14.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:14 smithi195 bash[19846]: cluster 2024-01-24T03:12:14.598704+0000 mon.smithi152 (mon.0) 886 : cluster [INF] Cluster is now healthy 2024-01-24T03:12:16.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:16 smithi195 bash[19846]: cluster 2024-01-24T03:12:15.603929+0000 mgr.smithi152.jkoscf (mgr.14182) 901 : cluster [DBG] pgmap v617: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:17.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:16 smithi152 bash[16344]: cluster 2024-01-24T03:12:15.603929+0000 mgr.smithi152.jkoscf (mgr.14182) 901 : cluster [DBG] pgmap v617: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:17.903 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:12:17.903 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:01.638629Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.byheww on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-byheww\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.byheww\nDeploy daemon haproxy.nfs.foo.smithi195.byheww ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.563549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.aartyp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-aartyp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.aartyp\nDeploy daemon haproxy.nfs.foo.smithi152.aartyp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:11:05.567732Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.igyhfi on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:12:18.610 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:12:18.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: cluster 2024-01-24T03:12:17.605086+0000 mgr.smithi152.jkoscf (mgr.14182) 902 : cluster [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:12:18.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: cephadm 2024-01-24T03:12:17.749960+0000 mgr.smithi152.jkoscf (mgr.14182) 903 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms 2024-01-24T03:12:18.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:12:18.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms 2024-01-24T03:12:18.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms 2024-01-24T03:12:18.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:12:18.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms 2024-01-24T03:12:18.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.fybfms ... 2024-01-24T03:12:18.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:18.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:12:18.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:12:18.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:12:18.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:18.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:12:18.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:12:18.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:12:18.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:12:18.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:12:18.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms 2024-01-24T03:12:18.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:12:18.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms 2024-01-24T03:12:18.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms 2024-01-24T03:12:18.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:12:18.996 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms 2024-01-24T03:12:18.996 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.fybfms ... 2024-01-24T03:12:18.996 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:18.996 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:12:18.996 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:12:18.997 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:12:18.997 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:18.997 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: cephadm 2024-01-24T03:12:17.750236+0000 mgr.smithi152.jkoscf (mgr.14182) 904 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.fybfms 2024-01-24T03:12:18.997 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: audit 2024-01-24T03:12:17.750688+0000 mon.smithi152 (mon.0) 887 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.fybfms"}]: dispatch 2024-01-24T03:12:18.997 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: cephadm 2024-01-24T03:12:17.751865+0000 mgr.smithi152.jkoscf (mgr.14182) 905 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms 2024-01-24T03:12:18.997 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:12:18.998 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms 2024-01-24T03:12:18.998 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms 2024-01-24T03:12:18.998 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:12:18.998 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms 2024-01-24T03:12:18.998 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.fybfms ... 2024-01-24T03:12:18.998 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:18.998 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:12:18.998 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:12:18.998 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:12:18.998 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:18.998 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:18 smithi195 bash[19846]: cephadm 2024-01-24T03:12:17.756944+0000 mgr.smithi152.jkoscf (mgr.14182) 906 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.cppvnw on smithi152 2024-01-24T03:12:19.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: cluster 2024-01-24T03:12:17.605086+0000 mgr.smithi152.jkoscf (mgr.14182) 902 : cluster [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:12:19.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: cephadm 2024-01-24T03:12:17.749960+0000 mgr.smithi152.jkoscf (mgr.14182) 903 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms 2024-01-24T03:12:19.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:12:19.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms 2024-01-24T03:12:19.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms 2024-01-24T03:12:19.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:12:19.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms 2024-01-24T03:12:19.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.fybfms ... 2024-01-24T03:12:19.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:19.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:12:19.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:12:19.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:12:19.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:19.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:12:19.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:12:19.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:12:19.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:12:19.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.fybfms ... 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: cephadm 2024-01-24T03:12:17.750236+0000 mgr.smithi152.jkoscf (mgr.14182) 904 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.fybfms 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: audit 2024-01-24T03:12:17.750688+0000 mon.smithi152 (mon.0) 887 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.fybfms"}]: dispatch 2024-01-24T03:12:19.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: cephadm 2024-01-24T03:12:17.751865+0000 mgr.smithi152.jkoscf (mgr.14182) 905 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms 2024-01-24T03:12:19.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:12:19.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms 2024-01-24T03:12:19.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms 2024-01-24T03:12:19.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:12:19.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms 2024-01-24T03:12:19.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.fybfms ... 2024-01-24T03:12:19.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:19.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:12:19.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:12:19.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:12:19.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:19.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:18 smithi152 bash[16344]: cephadm 2024-01-24T03:12:17.756944+0000 mgr.smithi152.jkoscf (mgr.14182) 906 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.cppvnw on smithi152 2024-01-24T03:12:19.612 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:12:19.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:19 smithi195 bash[19846]: audit 2024-01-24T03:12:17.890787+0000 mgr.smithi152.jkoscf (mgr.14182) 907 : audit [DBG] from='client.15190 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:20.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:19 smithi152 bash[16344]: audit 2024-01-24T03:12:17.890787+0000 mgr.smithi152.jkoscf (mgr.14182) 907 : audit [DBG] from='client.15190 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:20.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:20 smithi195 bash[19846]: cluster 2024-01-24T03:12:19.606508+0000 mgr.smithi152.jkoscf (mgr.14182) 908 : cluster [DBG] pgmap v619: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:21.071 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:20 smithi152 bash[16344]: cluster 2024-01-24T03:12:19.606508+0000 mgr.smithi152.jkoscf (mgr.14182) 908 : cluster [DBG] pgmap v619: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:23.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: cluster 2024-01-24T03:12:21.608059+0000 mgr.smithi152.jkoscf (mgr.14182) 909 : cluster [DBG] pgmap v620: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:23.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: cephadm 2024-01-24T03:12:21.757822+0000 mgr.smithi152.jkoscf (mgr.14182) 910 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw 2024-01-24T03:12:23.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:12:23.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw 2024-01-24T03:12:23.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:12:23.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.cppvnw ... 2024-01-24T03:12:23.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:23.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:12:23.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:12:23.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:12:23.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:23.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:12:23.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:12:23.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:12:23.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:12:23.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:12:23.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw 2024-01-24T03:12:23.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:12:23.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw 2024-01-24T03:12:23.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:12:23.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.cppvnw ... 2024-01-24T03:12:23.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:23.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:12:23.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:12:23.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:12:23.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:23.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: cephadm 2024-01-24T03:12:21.758061+0000 mgr.smithi152.jkoscf (mgr.14182) 911 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: audit 2024-01-24T03:12:21.758517+0000 mon.smithi152 (mon.0) 888 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.cppvnw"}]: dispatch 2024-01-24T03:12:23.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: cephadm 2024-01-24T03:12:21.759636+0000 mgr.smithi152.jkoscf (mgr.14182) 912 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw 2024-01-24T03:12:23.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:12:23.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw 2024-01-24T03:12:23.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:12:23.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.cppvnw ... 2024-01-24T03:12:23.091 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:23.091 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:12:23.091 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:12:23.091 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:12:23.091 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:23.091 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: cephadm 2024-01-24T03:12:21.762673+0000 mgr.smithi152.jkoscf (mgr.14182) 913 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:12:23.091 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: cephadm 2024-01-24T03:12:21.764635+0000 mgr.smithi152.jkoscf (mgr.14182) 914 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:12:23.091 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: cluster 2024-01-24T03:12:21.765691+0000 mgr.smithi152.jkoscf (mgr.14182) 915 : cluster [DBG] pgmap v621: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:12:23.091 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:22 smithi152 bash[16344]: audit 2024-01-24T03:12:22.534500+0000 mon.smithi152 (mon.0) 889 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:12:23.091 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:12:23.092 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:12:23.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: cluster 2024-01-24T03:12:21.608059+0000 mgr.smithi152.jkoscf (mgr.14182) 909 : cluster [DBG] pgmap v620: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:23.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: cephadm 2024-01-24T03:12:21.757822+0000 mgr.smithi152.jkoscf (mgr.14182) 910 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw 2024-01-24T03:12:23.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:12:23.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw 2024-01-24T03:12:23.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:12:23.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.cppvnw ... 2024-01-24T03:12:23.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:23.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:12:23.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:12:23.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:12:23.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:23.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:12:23.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:12:23.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:12:23.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:12:23.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:12:23.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw 2024-01-24T03:12:23.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:12:23.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw 2024-01-24T03:12:23.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:12:23.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.cppvnw ... 2024-01-24T03:12:23.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:23.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:12:23.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:12:23.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:12:23.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:23.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: cephadm 2024-01-24T03:12:21.758061+0000 mgr.smithi152.jkoscf (mgr.14182) 911 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: audit 2024-01-24T03:12:21.758517+0000 mon.smithi152 (mon.0) 888 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.cppvnw"}]: dispatch 2024-01-24T03:12:23.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: cephadm 2024-01-24T03:12:21.759636+0000 mgr.smithi152.jkoscf (mgr.14182) 912 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw 2024-01-24T03:12:23.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:12:23.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw 2024-01-24T03:12:23.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:12:23.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw 2024-01-24T03:12:23.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.cppvnw ... 2024-01-24T03:12:23.246 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:23.246 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:12:23.246 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:12:23.246 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:12:23.246 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:12:23.246 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: cephadm 2024-01-24T03:12:21.762673+0000 mgr.smithi152.jkoscf (mgr.14182) 913 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:12:23.246 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: cephadm 2024-01-24T03:12:21.764635+0000 mgr.smithi152.jkoscf (mgr.14182) 914 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:12:23.246 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: cluster 2024-01-24T03:12:21.765691+0000 mgr.smithi152.jkoscf (mgr.14182) 915 : cluster [DBG] pgmap v621: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:12:23.246 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:22 smithi195 bash[19846]: audit 2024-01-24T03:12:22.534500+0000 mon.smithi152 (mon.0) 889 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:12:23.737 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:12:24.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:23 smithi152 bash[16344]: cluster 2024-01-24T03:12:22.734666+0000 mon.smithi152 (mon.0) 890 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:12:24.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:23 smithi195 bash[19846]: cluster 2024-01-24T03:12:22.734666+0000 mon.smithi152 (mon.0) 890 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:12:24.737 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:12:25.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:24 smithi152 bash[16344]: audit 2024-01-24T03:12:23.075282+0000 mgr.smithi152.jkoscf (mgr.14182) 916 : audit [DBG] from='client.15194 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:25.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:24 smithi152 bash[16344]: cluster 2024-01-24T03:12:23.767367+0000 mgr.smithi152.jkoscf (mgr.14182) 917 : cluster [DBG] pgmap v622: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:12:25.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:24 smithi195 bash[19846]: audit 2024-01-24T03:12:23.075282+0000 mgr.smithi152.jkoscf (mgr.14182) 916 : audit [DBG] from='client.15194 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:25.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:24 smithi195 bash[19846]: cluster 2024-01-24T03:12:23.767367+0000 mgr.smithi152.jkoscf (mgr.14182) 917 : cluster [DBG] pgmap v622: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:12:27.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:26 smithi152 bash[16344]: cluster 2024-01-24T03:12:25.769127+0000 mgr.smithi152.jkoscf (mgr.14182) 918 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:12:27.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:26 smithi195 bash[19846]: cluster 2024-01-24T03:12:25.769127+0000 mgr.smithi152.jkoscf (mgr.14182) 918 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:12:27.991 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:12:27.991 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:12:28.616 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:12:29.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:28 smithi152 bash[16344]: cluster 2024-01-24T03:12:27.770503+0000 mgr.smithi152.jkoscf (mgr.14182) 919 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:12:29.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:28 smithi195 bash[19846]: cluster 2024-01-24T03:12:27.770503+0000 mgr.smithi152.jkoscf (mgr.14182) 919 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:12:29.617 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:12:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:29 smithi152 bash[16344]: audit 2024-01-24T03:12:27.976738+0000 mgr.smithi152.jkoscf (mgr.14182) 920 : audit [DBG] from='client.15198 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:29 smithi195 bash[19846]: audit 2024-01-24T03:12:27.976738+0000 mgr.smithi152.jkoscf (mgr.14182) 920 : audit [DBG] from='client.15198 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:31.046 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:30 smithi152 bash[16344]: cluster 2024-01-24T03:12:29.771679+0000 mgr.smithi152.jkoscf (mgr.14182) 921 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:12:31.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:30 smithi195 bash[19846]: cluster 2024-01-24T03:12:29.771679+0000 mgr.smithi152.jkoscf (mgr.14182) 921 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:12:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:31 smithi195 bash[19846]: cluster 2024-01-24T03:12:31.773413+0000 mgr.smithi152.jkoscf (mgr.14182) 922 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:12:32.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:31 smithi152 bash[16344]: cluster 2024-01-24T03:12:31.773413+0000 mgr.smithi152.jkoscf (mgr.14182) 922 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:12:32.886 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:12:32.886 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:12:33.531 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:12:34.532 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:12:34.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:34 smithi195 bash[19846]: audit 2024-01-24T03:12:32.873683+0000 mgr.smithi152.jkoscf (mgr.14182) 923 : audit [DBG] from='client.15202 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:34.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:34 smithi195 bash[19846]: cluster 2024-01-24T03:12:33.774972+0000 mgr.smithi152.jkoscf (mgr.14182) 924 : cluster [DBG] pgmap v627: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:34.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:34 smithi152 bash[16344]: audit 2024-01-24T03:12:32.873683+0000 mgr.smithi152.jkoscf (mgr.14182) 923 : audit [DBG] from='client.15202 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:34.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:34 smithi152 bash[16344]: cluster 2024-01-24T03:12:33.774972+0000 mgr.smithi152.jkoscf (mgr.14182) 924 : cluster [DBG] pgmap v627: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:37.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:36 smithi195 bash[19846]: cluster 2024-01-24T03:12:35.776529+0000 mgr.smithi152.jkoscf (mgr.14182) 925 : cluster [DBG] pgmap v628: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:37.249 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:36 smithi152 bash[16344]: cluster 2024-01-24T03:12:35.776529+0000 mgr.smithi152.jkoscf (mgr.14182) 925 : cluster [DBG] pgmap v628: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:37.696 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:12:37.697 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:12:38.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:37 smithi152 bash[16344]: audit 2024-01-24T03:12:37.676188+0000 mgr.smithi152.jkoscf (mgr.14182) 926 : audit [DBG] from='client.15206 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:38.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:37 smithi152 bash[16344]: cluster 2024-01-24T03:12:37.777815+0000 mgr.smithi152.jkoscf (mgr.14182) 927 : cluster [DBG] pgmap v629: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:12:38.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:37 smithi195 bash[19846]: audit 2024-01-24T03:12:37.676188+0000 mgr.smithi152.jkoscf (mgr.14182) 926 : audit [DBG] from='client.15206 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:38.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:37 smithi195 bash[19846]: cluster 2024-01-24T03:12:37.777815+0000 mgr.smithi152.jkoscf (mgr.14182) 927 : cluster [DBG] pgmap v629: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:12:38.342 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:12:39.343 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:12:41.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:40 smithi152 bash[16344]: cluster 2024-01-24T03:12:39.779597+0000 mgr.smithi152.jkoscf (mgr.14182) 928 : cluster [DBG] pgmap v630: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:41.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:40 smithi195 bash[19846]: cluster 2024-01-24T03:12:39.779597+0000 mgr.smithi152.jkoscf (mgr.14182) 928 : cluster [DBG] pgmap v630: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:42.178 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:41 smithi152 bash[16344]: cluster 2024-01-24T03:12:41.781442+0000 mgr.smithi152.jkoscf (mgr.14182) 929 : cluster [DBG] pgmap v631: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:42.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:41 smithi195 bash[19846]: cluster 2024-01-24T03:12:41.781442+0000 mgr.smithi152.jkoscf (mgr.14182) 929 : cluster [DBG] pgmap v631: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:42.540 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:12:42.541 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:12:43.174 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:42 smithi152 bash[16344]: audit 2024-01-24T03:12:42.523465+0000 mgr.smithi152.jkoscf (mgr.14182) 930 : audit [DBG] from='client.15210 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:43.175 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:12:43.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:42 smithi195 bash[19846]: audit 2024-01-24T03:12:42.523465+0000 mgr.smithi152.jkoscf (mgr.14182) 930 : audit [DBG] from='client.15210 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:44.176 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:12:44.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:44 smithi195 bash[19846]: cluster 2024-01-24T03:12:43.783109+0000 mgr.smithi152.jkoscf (mgr.14182) 931 : cluster [DBG] pgmap v632: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:44.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:44 smithi152 bash[16344]: cluster 2024-01-24T03:12:43.783109+0000 mgr.smithi152.jkoscf (mgr.14182) 931 : cluster [DBG] pgmap v632: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:46.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:45 smithi152 bash[16344]: cluster 2024-01-24T03:12:45.785252+0000 mgr.smithi152.jkoscf (mgr.14182) 932 : cluster [DBG] pgmap v633: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:45 smithi195 bash[19846]: cluster 2024-01-24T03:12:45.785252+0000 mgr.smithi152.jkoscf (mgr.14182) 932 : cluster [DBG] pgmap v633: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:47.569 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:12:47.569 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:12:48.157 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:47 smithi152 bash[16344]: audit 2024-01-24T03:12:47.550724+0000 mgr.smithi152.jkoscf (mgr.14182) 933 : audit [DBG] from='client.15214 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:48.157 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:47 smithi152 bash[16344]: cluster 2024-01-24T03:12:47.786647+0000 mgr.smithi152.jkoscf (mgr.14182) 934 : cluster [DBG] pgmap v634: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:12:48.158 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:12:48.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:47 smithi195 bash[19846]: audit 2024-01-24T03:12:47.550724+0000 mgr.smithi152.jkoscf (mgr.14182) 933 : audit [DBG] from='client.15214 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:48.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:47 smithi195 bash[19846]: cluster 2024-01-24T03:12:47.786647+0000 mgr.smithi152.jkoscf (mgr.14182) 934 : cluster [DBG] pgmap v634: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:12:49.159 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:12:50.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:49 smithi195 bash[19846]: cluster 2024-01-24T03:12:49.788425+0000 mgr.smithi152.jkoscf (mgr.14182) 935 : cluster [DBG] pgmap v635: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:50.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:49 smithi152 bash[16344]: cluster 2024-01-24T03:12:49.788425+0000 mgr.smithi152.jkoscf (mgr.14182) 935 : cluster [DBG] pgmap v635: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:52.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:51 smithi195 bash[19846]: cluster 2024-01-24T03:12:51.790186+0000 mgr.smithi152.jkoscf (mgr.14182) 936 : cluster [DBG] pgmap v636: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:52.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:51 smithi152 bash[16344]: cluster 2024-01-24T03:12:51.790186+0000 mgr.smithi152.jkoscf (mgr.14182) 936 : cluster [DBG] pgmap v636: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:52.342 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:12:52.342 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:12:52.965 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:12:53.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:52 smithi195 bash[19846]: audit 2024-01-24T03:12:52.329869+0000 mgr.smithi152.jkoscf (mgr.14182) 937 : audit [DBG] from='client.15218 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:53.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:52 smithi152 bash[16344]: audit 2024-01-24T03:12:52.329869+0000 mgr.smithi152.jkoscf (mgr.14182) 937 : audit [DBG] from='client.15218 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:53.966 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:12:54.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:54 smithi195 bash[19846]: cluster 2024-01-24T03:12:53.791737+0000 mgr.smithi152.jkoscf (mgr.14182) 938 : cluster [DBG] pgmap v637: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:54.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:54 smithi152 bash[16344]: cluster 2024-01-24T03:12:53.791737+0000 mgr.smithi152.jkoscf (mgr.14182) 938 : cluster [DBG] pgmap v637: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:56.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:55 smithi195 bash[19846]: cluster 2024-01-24T03:12:55.793418+0000 mgr.smithi152.jkoscf (mgr.14182) 939 : cluster [DBG] pgmap v638: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:56.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:55 smithi152 bash[16344]: cluster 2024-01-24T03:12:55.793418+0000 mgr.smithi152.jkoscf (mgr.14182) 939 : cluster [DBG] pgmap v638: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:12:57.216 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:12:57.216 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:12:57.788 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:12:58.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:57 smithi152 bash[16344]: audit 2024-01-24T03:12:57.202781+0000 mgr.smithi152.jkoscf (mgr.14182) 940 : audit [DBG] from='client.15222 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:58.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:57 smithi152 bash[16344]: cluster 2024-01-24T03:12:57.794821+0000 mgr.smithi152.jkoscf (mgr.14182) 941 : cluster [DBG] pgmap v639: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:12:58.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:57 smithi195 bash[19846]: audit 2024-01-24T03:12:57.202781+0000 mgr.smithi152.jkoscf (mgr.14182) 940 : audit [DBG] from='client.15222 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:12:58.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:57 smithi195 bash[19846]: cluster 2024-01-24T03:12:57.794821+0000 mgr.smithi152.jkoscf (mgr.14182) 941 : cluster [DBG] pgmap v639: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:12:58.790 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:13:00.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:12:59 smithi195 bash[19846]: cluster 2024-01-24T03:12:59.796656+0000 mgr.smithi152.jkoscf (mgr.14182) 942 : cluster [DBG] pgmap v640: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:00.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:12:59 smithi152 bash[16344]: cluster 2024-01-24T03:12:59.796656+0000 mgr.smithi152.jkoscf (mgr.14182) 942 : cluster [DBG] pgmap v640: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:01.862 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:13:01.862 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:13:02.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:01 smithi195 bash[19846]: cluster 2024-01-24T03:13:01.798416+0000 mgr.smithi152.jkoscf (mgr.14182) 943 : cluster [DBG] pgmap v641: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:02.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:01 smithi152 bash[16344]: cluster 2024-01-24T03:13:01.798416+0000 mgr.smithi152.jkoscf (mgr.14182) 943 : cluster [DBG] pgmap v641: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:02.457 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:13:03.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:02 smithi195 bash[19846]: audit 2024-01-24T03:13:01.843343+0000 mgr.smithi152.jkoscf (mgr.14182) 944 : audit [DBG] from='client.15226 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:03.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:02 smithi152 bash[16344]: audit 2024-01-24T03:13:01.843343+0000 mgr.smithi152.jkoscf (mgr.14182) 944 : audit [DBG] from='client.15226 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:03.458 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:13:04.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:04 smithi195 bash[19846]: cluster 2024-01-24T03:13:03.799950+0000 mgr.smithi152.jkoscf (mgr.14182) 945 : cluster [DBG] pgmap v642: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:04.769 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:04 smithi152 bash[16344]: cluster 2024-01-24T03:13:03.799950+0000 mgr.smithi152.jkoscf (mgr.14182) 945 : cluster [DBG] pgmap v642: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:06.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:05 smithi195 bash[19846]: cluster 2024-01-24T03:13:05.801609+0000 mgr.smithi152.jkoscf (mgr.14182) 946 : cluster [DBG] pgmap v643: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:06.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:05 smithi152 bash[16344]: cluster 2024-01-24T03:13:05.801609+0000 mgr.smithi152.jkoscf (mgr.14182) 946 : cluster [DBG] pgmap v643: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:06.945 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:13:06.945 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:13:07.522 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:13:08.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:07 smithi195 bash[19846]: audit 2024-01-24T03:13:06.925622+0000 mgr.smithi152.jkoscf (mgr.14182) 947 : audit [DBG] from='client.15230 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:08.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:07 smithi195 bash[19846]: cluster 2024-01-24T03:13:07.802934+0000 mgr.smithi152.jkoscf (mgr.14182) 948 : cluster [DBG] pgmap v644: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:13:08.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:07 smithi152 bash[16344]: audit 2024-01-24T03:13:06.925622+0000 mgr.smithi152.jkoscf (mgr.14182) 947 : audit [DBG] from='client.15230 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:08.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:07 smithi152 bash[16344]: cluster 2024-01-24T03:13:07.802934+0000 mgr.smithi152.jkoscf (mgr.14182) 948 : cluster [DBG] pgmap v644: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:13:08.524 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:13:10.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:09 smithi195 bash[19846]: cluster 2024-01-24T03:13:09.804852+0000 mgr.smithi152.jkoscf (mgr.14182) 949 : cluster [DBG] pgmap v645: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:10.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:09 smithi152 bash[16344]: cluster 2024-01-24T03:13:09.804852+0000 mgr.smithi152.jkoscf (mgr.14182) 949 : cluster [DBG] pgmap v645: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:11.690 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:13:11.690 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:13:12.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:11 smithi152 bash[16344]: audit 2024-01-24T03:13:11.670210+0000 mgr.smithi152.jkoscf (mgr.14182) 950 : audit [DBG] from='client.15234 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:12.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:11 smithi152 bash[16344]: cluster 2024-01-24T03:13:11.806774+0000 mgr.smithi152.jkoscf (mgr.14182) 951 : cluster [DBG] pgmap v646: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:12.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:11 smithi195 bash[19846]: audit 2024-01-24T03:13:11.670210+0000 mgr.smithi152.jkoscf (mgr.14182) 950 : audit [DBG] from='client.15234 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:12.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:11 smithi195 bash[19846]: cluster 2024-01-24T03:13:11.806774+0000 mgr.smithi152.jkoscf (mgr.14182) 951 : cluster [DBG] pgmap v646: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:12.345 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:13:13.345 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:13:14.664 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:14 smithi152 bash[16344]: cluster 2024-01-24T03:13:13.808343+0000 mgr.smithi152.jkoscf (mgr.14182) 952 : cluster [DBG] pgmap v647: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:14.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:14 smithi195 bash[19846]: cluster 2024-01-24T03:13:13.808343+0000 mgr.smithi152.jkoscf (mgr.14182) 952 : cluster [DBG] pgmap v647: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:16.237 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:15 smithi152 bash[16344]: cluster 2024-01-24T03:13:15.810064+0000 mgr.smithi152.jkoscf (mgr.14182) 953 : cluster [DBG] pgmap v648: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:16.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:15 smithi195 bash[19846]: cluster 2024-01-24T03:13:15.810064+0000 mgr.smithi152.jkoscf (mgr.14182) 953 : cluster [DBG] pgmap v648: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:16.603 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:13:16.603 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:13:17.228 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:16 smithi152 bash[16344]: audit 2024-01-24T03:13:16.583453+0000 mgr.smithi152.jkoscf (mgr.14182) 954 : audit [DBG] from='client.15238 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:17.229 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:13:17.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:16 smithi195 bash[19846]: audit 2024-01-24T03:13:16.583453+0000 mgr.smithi152.jkoscf (mgr.14182) 954 : audit [DBG] from='client.15238 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:18.230 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:13:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:17 smithi195 bash[19846]: cluster 2024-01-24T03:13:17.811395+0000 mgr.smithi152.jkoscf (mgr.14182) 955 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:13:18.242 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:17 smithi152 bash[16344]: cluster 2024-01-24T03:13:17.811395+0000 mgr.smithi152.jkoscf (mgr.14182) 955 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:13:20.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:19 smithi152 bash[16344]: cluster 2024-01-24T03:13:19.813148+0000 mgr.smithi152.jkoscf (mgr.14182) 956 : cluster [DBG] pgmap v650: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:20.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:19 smithi195 bash[19846]: cluster 2024-01-24T03:13:19.813148+0000 mgr.smithi152.jkoscf (mgr.14182) 956 : cluster [DBG] pgmap v650: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:21.492 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:13:21.492 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:13:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:21 smithi152 bash[16344]: audit 2024-01-24T03:13:21.769124+0000 mon.smithi152 (mon.0) 891 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:13:22.093 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:13:22.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:21 smithi195 bash[19846]: audit 2024-01-24T03:13:21.769124+0000 mon.smithi152 (mon.0) 891 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:13:23.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:22 smithi152 bash[16344]: audit 2024-01-24T03:13:21.480230+0000 mgr.smithi152.jkoscf (mgr.14182) 957 : audit [DBG] from='client.15242 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:23.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:22 smithi152 bash[16344]: cluster 2024-01-24T03:13:21.814999+0000 mgr.smithi152.jkoscf (mgr.14182) 958 : cluster [DBG] pgmap v651: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:23.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:22 smithi152 bash[16344]: audit 2024-01-24T03:13:22.068015+0000 mon.smithi152 (mon.0) 892 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:13:23.095 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:13:23.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:22 smithi195 bash[19846]: audit 2024-01-24T03:13:21.480230+0000 mgr.smithi152.jkoscf (mgr.14182) 957 : audit [DBG] from='client.15242 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:23.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:22 smithi195 bash[19846]: cluster 2024-01-24T03:13:21.814999+0000 mgr.smithi152.jkoscf (mgr.14182) 958 : cluster [DBG] pgmap v651: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:23.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:22 smithi195 bash[19846]: audit 2024-01-24T03:13:22.068015+0000 mon.smithi152 (mon.0) 892 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:13:24.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:24 smithi152 bash[16344]: cluster 2024-01-24T03:13:23.816476+0000 mgr.smithi152.jkoscf (mgr.14182) 959 : cluster [DBG] pgmap v652: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:24.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:24 smithi195 bash[19846]: cluster 2024-01-24T03:13:23.816476+0000 mgr.smithi152.jkoscf (mgr.14182) 959 : cluster [DBG] pgmap v652: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:25 smithi195 bash[19846]: cluster 2024-01-24T03:13:25.818179+0000 mgr.smithi152.jkoscf (mgr.14182) 960 : cluster [DBG] pgmap v653: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:26.304 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:13:26.304 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:02:59.511619Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:02:59.512008Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:02:59.512301Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:02:59.512559Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:02:59.513059Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:02:59.512810Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:02:59.514051Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:13:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:25 smithi152 bash[16344]: cluster 2024-01-24T03:13:25.818179+0000 mgr.smithi152.jkoscf (mgr.14182) 960 : cluster [DBG] pgmap v653: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:26.891 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:13:27.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:26 smithi195 bash[19846]: audit 2024-01-24T03:13:26.284018+0000 mgr.smithi152.jkoscf (mgr.14182) 961 : audit [DBG] from='client.15246 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:27.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:26 smithi152 bash[16344]: audit 2024-01-24T03:13:26.284018+0000 mgr.smithi152.jkoscf (mgr.14182) 961 : audit [DBG] from='client.15246 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:27.892 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:13:28.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:28 smithi195 bash[19846]: audit 2024-01-24T03:13:27.672767+0000 mon.smithi152 (mon.0) 893 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:13:28.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:28 smithi195 bash[19846]: cluster 2024-01-24T03:13:27.819535+0000 mgr.smithi152.jkoscf (mgr.14182) 962 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:13:28.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:28 smithi195 bash[19846]: audit 2024-01-24T03:13:27.969175+0000 mon.smithi152 (mon.0) 894 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:13:28.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:28 smithi195 bash[19846]: audit 2024-01-24T03:13:27.970903+0000 mon.smithi152 (mon.0) 895 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:13:28.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:28 smithi195 bash[19846]: audit 2024-01-24T03:13:27.979652+0000 mon.smithi152 (mon.0) 896 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:13:28.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:28 smithi195 bash[19846]: audit 2024-01-24T03:13:27.987880+0000 mon.smithi152 (mon.0) 897 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:13:28.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:28 smithi195 bash[19846]: audit 2024-01-24T03:13:28.004909+0000 mon.smithi152 (mon.0) 898 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:13:29.020 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:28 smithi152 bash[16344]: audit 2024-01-24T03:13:27.672767+0000 mon.smithi152 (mon.0) 893 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:13:29.020 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:28 smithi152 bash[16344]: cluster 2024-01-24T03:13:27.819535+0000 mgr.smithi152.jkoscf (mgr.14182) 962 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:13:29.020 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:28 smithi152 bash[16344]: audit 2024-01-24T03:13:27.969175+0000 mon.smithi152 (mon.0) 894 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:13:29.020 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:28 smithi152 bash[16344]: audit 2024-01-24T03:13:27.970903+0000 mon.smithi152 (mon.0) 895 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:13:29.020 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:28 smithi152 bash[16344]: audit 2024-01-24T03:13:27.979652+0000 mon.smithi152 (mon.0) 896 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:13:29.020 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:28 smithi152 bash[16344]: audit 2024-01-24T03:13:27.987880+0000 mon.smithi152 (mon.0) 897 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:13:29.020 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:28 smithi152 bash[16344]: audit 2024-01-24T03:13:28.004909+0000 mon.smithi152 (mon.0) 898 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:13:29.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:29 smithi195 bash[19846]: cluster 2024-01-24T03:13:27.980695+0000 mgr.smithi152.jkoscf (mgr.14182) 963 : cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:13:29.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:29 smithi195 bash[19846]: cephadm 2024-01-24T03:13:28.008797+0000 mgr.smithi152.jkoscf (mgr.14182) 964 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.aqlapx on smithi195 2024-01-24T03:13:29.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:29 smithi195 bash[19846]: cluster 2024-01-24T03:13:28.668061+0000 mon.smithi152 (mon.0) 899 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:13:29.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:29 smithi195 bash[19846]: cluster 2024-01-24T03:13:28.668130+0000 mon.smithi152 (mon.0) 900 : cluster [INF] Cluster is now healthy 2024-01-24T03:13:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:29 smithi152 bash[16344]: cluster 2024-01-24T03:13:27.980695+0000 mgr.smithi152.jkoscf (mgr.14182) 963 : cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:13:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:29 smithi152 bash[16344]: cephadm 2024-01-24T03:13:28.008797+0000 mgr.smithi152.jkoscf (mgr.14182) 964 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.aqlapx on smithi195 2024-01-24T03:13:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:29 smithi152 bash[16344]: cluster 2024-01-24T03:13:28.668061+0000 mon.smithi152 (mon.0) 899 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:13:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:29 smithi152 bash[16344]: cluster 2024-01-24T03:13:28.668130+0000 mon.smithi152 (mon.0) 900 : cluster [INF] Cluster is now healthy 2024-01-24T03:13:31.117 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:13:31.117 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:11:05.570767Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.iookzg on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:17.751733Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.fybfms on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-fybfms\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.fybfms\nDeploy daemon haproxy.nfs.foo.smithi195.fybfms ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.759440Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.cppvnw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-cppvnw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.cppvnw\nDeploy daemon haproxy.nfs.foo.smithi152.cppvnw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:12:21.762554Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.osegla on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:13:31.721 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:13:31.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:31 smithi195 bash[19846]: cluster 2024-01-24T03:13:29.982316+0000 mgr.smithi152.jkoscf (mgr.14182) 965 : cluster [DBG] pgmap v656: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:13:32.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:31 smithi152 bash[16344]: cluster 2024-01-24T03:13:29.982316+0000 mgr.smithi152.jkoscf (mgr.14182) 965 : cluster [DBG] pgmap v656: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:13:32.723 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:13:32.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:32 smithi195 bash[19846]: audit 2024-01-24T03:13:31.096870+0000 mgr.smithi152.jkoscf (mgr.14182) 966 : audit [DBG] from='client.15250 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:32.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:32 smithi195 bash[19846]: audit 2024-01-24T03:13:31.914048+0000 mon.smithi152 (mon.0) 901 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.aqlapx"}]: dispatch 2024-01-24T03:13:33.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:32 smithi152 bash[16344]: audit 2024-01-24T03:13:31.096870+0000 mgr.smithi152.jkoscf (mgr.14182) 966 : audit [DBG] from='client.15250 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:33.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:32 smithi152 bash[16344]: audit 2024-01-24T03:13:31.914048+0000 mon.smithi152 (mon.0) 901 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.aqlapx"}]: dispatch 2024-01-24T03:13:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: cephadm 2024-01-24T03:13:31.912911+0000 mgr.smithi152.jkoscf (mgr.14182) 967 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx 2024-01-24T03:13:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:13:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx 2024-01-24T03:13:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:13:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.aqlapx ... 2024-01-24T03:13:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:33.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:13:33.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.aqlapx ... 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: cephadm 2024-01-24T03:13:31.913393+0000 mgr.smithi152.jkoscf (mgr.14182) 968 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: cephadm 2024-01-24T03:13:31.915684+0000 mgr.smithi152.jkoscf (mgr.14182) 969 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:33.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.aqlapx ... 2024-01-24T03:13:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:13:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:13:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:13:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: cephadm 2024-01-24T03:13:31.919792+0000 mgr.smithi152.jkoscf (mgr.14182) 970 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.jtrkrk on smithi152 2024-01-24T03:13:33.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:33 smithi195 bash[19846]: cluster 2024-01-24T03:13:31.983902+0000 mgr.smithi152.jkoscf (mgr.14182) 971 : cluster [DBG] pgmap v657: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:13:34.021 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: cephadm 2024-01-24T03:13:31.912911+0000 mgr.smithi152.jkoscf (mgr.14182) 967 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx 2024-01-24T03:13:34.022 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:13:34.022 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx 2024-01-24T03:13:34.022 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:34.022 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:13:34.022 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:34.022 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.aqlapx ... 2024-01-24T03:13:34.022 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:34.022 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:13:34.022 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:13:34.022 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:13:34.022 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:34.022 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.aqlapx ... 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:13:34.023 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: cephadm 2024-01-24T03:13:31.913393+0000 mgr.smithi152.jkoscf (mgr.14182) 968 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: cephadm 2024-01-24T03:13:31.915684+0000 mgr.smithi152.jkoscf (mgr.14182) 969 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.aqlapx ... 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:13:34.024 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:34.025 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: cephadm 2024-01-24T03:13:31.919792+0000 mgr.smithi152.jkoscf (mgr.14182) 970 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.jtrkrk on smithi152 2024-01-24T03:13:34.025 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:33 smithi152 bash[16344]: cluster 2024-01-24T03:13:31.983902+0000 mgr.smithi152.jkoscf (mgr.14182) 971 : cluster [DBG] pgmap v657: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:13:35.938 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:13:35.938 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:13:35.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:35 smithi195 bash[19846]: cluster 2024-01-24T03:13:33.984805+0000 mgr.smithi152.jkoscf (mgr.14182) 972 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:13:35.999 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:35 smithi152 bash[16344]: cluster 2024-01-24T03:13:33.984805+0000 mgr.smithi152.jkoscf (mgr.14182) 972 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:13:36.611 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:13:36.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: cephadm 2024-01-24T03:13:35.760832+0000 mgr.smithi152.jkoscf (mgr.14182) 973 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk 2024-01-24T03:13:36.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:13:36.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk 2024-01-24T03:13:36.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:36.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:13:36.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:36.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.jtrkrk ... 2024-01-24T03:13:36.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:36.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:36.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.jtrkrk ... 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: cephadm 2024-01-24T03:13:35.761201+0000 mgr.smithi152.jkoscf (mgr.14182) 974 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: audit 2024-01-24T03:13:35.761689+0000 mon.smithi152 (mon.0) 902 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.jtrkrk"}]: dispatch 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: cephadm 2024-01-24T03:13:35.763037+0000 mgr.smithi152.jkoscf (mgr.14182) 975 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.jtrkrk ... 2024-01-24T03:13:36.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:36.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:13:36.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:13:36.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:13:36.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:36.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: cephadm 2024-01-24T03:13:35.767156+0000 mgr.smithi152.jkoscf (mgr.14182) 976 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:13:36.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: cephadm 2024-01-24T03:13:35.769630+0000 mgr.smithi152.jkoscf (mgr.14182) 977 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:13:36.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:36 smithi195 bash[19846]: cluster 2024-01-24T03:13:35.771497+0000 mgr.smithi152.jkoscf (mgr.14182) 978 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:13:37.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: cephadm 2024-01-24T03:13:35.760832+0000 mgr.smithi152.jkoscf (mgr.14182) 973 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk 2024-01-24T03:13:37.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:13:37.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk 2024-01-24T03:13:37.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:37.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:13:37.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:37.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.jtrkrk ... 2024-01-24T03:13:37.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:37.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:13:37.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:13:37.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:13:37.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:37.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:13:37.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.jtrkrk ... 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:13:37.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: cephadm 2024-01-24T03:13:35.761201+0000 mgr.smithi152.jkoscf (mgr.14182) 974 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: audit 2024-01-24T03:13:35.761689+0000 mon.smithi152 (mon.0) 902 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.jtrkrk"}]: dispatch 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: cephadm 2024-01-24T03:13:35.763037+0000 mgr.smithi152.jkoscf (mgr.14182) 975 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.jtrkrk ... 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:13:37.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:13:37.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: cephadm 2024-01-24T03:13:35.767156+0000 mgr.smithi152.jkoscf (mgr.14182) 976 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:13:37.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: cephadm 2024-01-24T03:13:35.769630+0000 mgr.smithi152.jkoscf (mgr.14182) 977 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:13:37.090 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:36 smithi152 bash[16344]: cluster 2024-01-24T03:13:35.771497+0000 mgr.smithi152.jkoscf (mgr.14182) 978 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:13:37.612 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:13:37.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:37 smithi195 bash[19846]: audit 2024-01-24T03:13:35.920855+0000 mgr.smithi152.jkoscf (mgr.14182) 979 : audit [DBG] from='client.15254 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:37.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:37 smithi195 bash[19846]: cluster 2024-01-24T03:13:36.706426+0000 mon.smithi152 (mon.0) 903 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:13:37.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:37 smithi195 bash[19846]: audit 2024-01-24T03:13:37.610577+0000 mon.smithi152 (mon.0) 904 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:13:38.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:37 smithi152 bash[16344]: audit 2024-01-24T03:13:35.920855+0000 mgr.smithi152.jkoscf (mgr.14182) 979 : audit [DBG] from='client.15254 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:38.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:37 smithi152 bash[16344]: cluster 2024-01-24T03:13:36.706426+0000 mon.smithi152 (mon.0) 903 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:13:38.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:37 smithi152 bash[16344]: audit 2024-01-24T03:13:37.610577+0000 mon.smithi152 (mon.0) 904 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:13:38.952 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:38 smithi152 bash[16344]: cluster 2024-01-24T03:13:37.772791+0000 mgr.smithi152.jkoscf (mgr.14182) 980 : cluster [DBG] pgmap v660: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:13:38.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:38 smithi195 bash[19846]: cluster 2024-01-24T03:13:37.772791+0000 mgr.smithi152.jkoscf (mgr.14182) 980 : cluster [DBG] pgmap v660: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:13:40.719 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:13:40.719 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:13:41.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:40 smithi152 bash[16344]: cluster 2024-01-24T03:13:39.774646+0000 mgr.smithi152.jkoscf (mgr.14182) 981 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:13:41.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:40 smithi195 bash[19846]: cluster 2024-01-24T03:13:39.774646+0000 mgr.smithi152.jkoscf (mgr.14182) 981 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:13:41.352 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:13:42.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:41 smithi195 bash[19846]: audit 2024-01-24T03:13:40.701716+0000 mgr.smithi152.jkoscf (mgr.14182) 982 : audit [DBG] from='client.15258 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:42.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:41 smithi152 bash[16344]: audit 2024-01-24T03:13:40.701716+0000 mgr.smithi152.jkoscf (mgr.14182) 982 : audit [DBG] from='client.15258 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:42.353 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:13:43.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:42 smithi195 bash[19846]: cluster 2024-01-24T03:13:41.776397+0000 mgr.smithi152.jkoscf (mgr.14182) 983 : cluster [DBG] pgmap v662: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:13:43.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:42 smithi152 bash[16344]: cluster 2024-01-24T03:13:41.776397+0000 mgr.smithi152.jkoscf (mgr.14182) 983 : cluster [DBG] pgmap v662: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:13:44.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:44 smithi152 bash[16344]: cluster 2024-01-24T03:13:43.777983+0000 mgr.smithi152.jkoscf (mgr.14182) 984 : cluster [DBG] pgmap v663: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:13:44.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:44 smithi195 bash[19846]: cluster 2024-01-24T03:13:43.777983+0000 mgr.smithi152.jkoscf (mgr.14182) 984 : cluster [DBG] pgmap v663: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:13:45.615 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:13:45.615 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:13:46.267 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:13:47.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:46 smithi195 bash[19846]: audit 2024-01-24T03:13:45.603183+0000 mgr.smithi152.jkoscf (mgr.14182) 985 : audit [DBG] from='client.15262 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:47.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:46 smithi195 bash[19846]: cluster 2024-01-24T03:13:45.778999+0000 mgr.smithi152.jkoscf (mgr.14182) 986 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:13:47.269 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:13:47.281 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:46 smithi152 bash[16344]: audit 2024-01-24T03:13:45.603183+0000 mgr.smithi152.jkoscf (mgr.14182) 985 : audit [DBG] from='client.15262 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:47.282 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:46 smithi152 bash[16344]: cluster 2024-01-24T03:13:45.778999+0000 mgr.smithi152.jkoscf (mgr.14182) 986 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:13:49.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:48 smithi152 bash[16344]: cluster 2024-01-24T03:13:47.780149+0000 mgr.smithi152.jkoscf (mgr.14182) 987 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:13:49.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:48 smithi195 bash[19846]: cluster 2024-01-24T03:13:47.780149+0000 mgr.smithi152.jkoscf (mgr.14182) 987 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:13:50.503 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:13:50.503 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:13:51.096 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:13:51.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:50 smithi195 bash[19846]: cluster 2024-01-24T03:13:49.781844+0000 mgr.smithi152.jkoscf (mgr.14182) 988 : cluster [DBG] pgmap v666: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:51.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:50 smithi152 bash[16344]: cluster 2024-01-24T03:13:49.781844+0000 mgr.smithi152.jkoscf (mgr.14182) 988 : cluster [DBG] pgmap v666: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:52.098 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:13:52.110 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:51 smithi152 bash[16344]: audit 2024-01-24T03:13:50.484981+0000 mgr.smithi152.jkoscf (mgr.14182) 989 : audit [DBG] from='client.15266 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:52.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:51 smithi195 bash[19846]: audit 2024-01-24T03:13:50.484981+0000 mgr.smithi152.jkoscf (mgr.14182) 989 : audit [DBG] from='client.15266 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:53.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:52 smithi195 bash[19846]: cluster 2024-01-24T03:13:51.783638+0000 mgr.smithi152.jkoscf (mgr.14182) 990 : cluster [DBG] pgmap v667: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:53.277 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:52 smithi152 bash[16344]: cluster 2024-01-24T03:13:51.783638+0000 mgr.smithi152.jkoscf (mgr.14182) 990 : cluster [DBG] pgmap v667: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:54.826 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:54 smithi152 bash[16344]: cluster 2024-01-24T03:13:53.785209+0000 mgr.smithi152.jkoscf (mgr.14182) 991 : cluster [DBG] pgmap v668: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:54.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:54 smithi195 bash[19846]: cluster 2024-01-24T03:13:53.785209+0000 mgr.smithi152.jkoscf (mgr.14182) 991 : cluster [DBG] pgmap v668: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:55.271 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:13:55.272 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:13:55.880 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:13:56.881 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:13:57.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:56 smithi195 bash[19846]: audit 2024-01-24T03:13:55.252332+0000 mgr.smithi152.jkoscf (mgr.14182) 992 : audit [DBG] from='client.15270 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:57.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:56 smithi195 bash[19846]: cluster 2024-01-24T03:13:55.786166+0000 mgr.smithi152.jkoscf (mgr.14182) 993 : cluster [DBG] pgmap v669: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:57.339 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:56 smithi152 bash[16344]: audit 2024-01-24T03:13:55.252332+0000 mgr.smithi152.jkoscf (mgr.14182) 992 : audit [DBG] from='client.15270 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:13:57.340 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:56 smithi152 bash[16344]: cluster 2024-01-24T03:13:55.786166+0000 mgr.smithi152.jkoscf (mgr.14182) 993 : cluster [DBG] pgmap v669: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:13:59.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:13:58 smithi195 bash[19846]: cluster 2024-01-24T03:13:57.786899+0000 mgr.smithi152.jkoscf (mgr.14182) 994 : cluster [DBG] pgmap v670: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:13:59.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:13:58 smithi152 bash[16344]: cluster 2024-01-24T03:13:57.786899+0000 mgr.smithi152.jkoscf (mgr.14182) 994 : cluster [DBG] pgmap v670: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:14:00.118 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:14:00.118 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:14:00.750 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:14:01.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:00 smithi152 bash[16344]: cluster 2024-01-24T03:13:59.788139+0000 mgr.smithi152.jkoscf (mgr.14182) 995 : cluster [DBG] pgmap v671: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:01.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:00 smithi195 bash[19846]: cluster 2024-01-24T03:13:59.788139+0000 mgr.smithi152.jkoscf (mgr.14182) 995 : cluster [DBG] pgmap v671: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:01.750 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:14:02.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:01 smithi152 bash[16344]: audit 2024-01-24T03:14:00.100923+0000 mgr.smithi152.jkoscf (mgr.14182) 996 : audit [DBG] from='client.15274 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:02.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:01 smithi152 bash[16344]: cluster 2024-01-24T03:14:01.789937+0000 mgr.smithi152.jkoscf (mgr.14182) 997 : cluster [DBG] pgmap v672: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:02.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:01 smithi195 bash[19846]: audit 2024-01-24T03:14:00.100923+0000 mgr.smithi152.jkoscf (mgr.14182) 996 : audit [DBG] from='client.15274 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:02.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:01 smithi195 bash[19846]: cluster 2024-01-24T03:14:01.789937+0000 mgr.smithi152.jkoscf (mgr.14182) 997 : cluster [DBG] pgmap v672: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:04.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:04 smithi152 bash[16344]: cluster 2024-01-24T03:14:03.790911+0000 mgr.smithi152.jkoscf (mgr.14182) 998 : cluster [DBG] pgmap v673: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:04.925 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:14:04.925 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:14:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:04 smithi195 bash[19846]: cluster 2024-01-24T03:14:03.790911+0000 mgr.smithi152.jkoscf (mgr.14182) 998 : cluster [DBG] pgmap v673: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:05.569 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:14:06.570 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:14:07.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:06 smithi195 bash[19846]: audit 2024-01-24T03:14:04.906990+0000 mgr.smithi152.jkoscf (mgr.14182) 999 : audit [DBG] from='client.15278 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:07.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:06 smithi195 bash[19846]: cluster 2024-01-24T03:14:05.792553+0000 mgr.smithi152.jkoscf (mgr.14182) 1000 : cluster [DBG] pgmap v674: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:07.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:06 smithi152 bash[16344]: audit 2024-01-24T03:14:04.906990+0000 mgr.smithi152.jkoscf (mgr.14182) 999 : audit [DBG] from='client.15278 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:07.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:06 smithi152 bash[16344]: cluster 2024-01-24T03:14:05.792553+0000 mgr.smithi152.jkoscf (mgr.14182) 1000 : cluster [DBG] pgmap v674: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:09.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:08 smithi195 bash[19846]: cluster 2024-01-24T03:14:07.794165+0000 mgr.smithi152.jkoscf (mgr.14182) 1001 : cluster [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:14:09.259 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:08 smithi152 bash[16344]: cluster 2024-01-24T03:14:07.794165+0000 mgr.smithi152.jkoscf (mgr.14182) 1001 : cluster [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:14:09.698 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:14:09.698 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:14:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:09 smithi152 bash[16344]: audit 2024-01-24T03:14:09.678554+0000 mgr.smithi152.jkoscf (mgr.14182) 1002 : audit [DBG] from='client.15282 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:09 smithi152 bash[16344]: cluster 2024-01-24T03:14:09.795541+0000 mgr.smithi152.jkoscf (mgr.14182) 1003 : cluster [DBG] pgmap v676: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:10.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:09 smithi195 bash[19846]: audit 2024-01-24T03:14:09.678554+0000 mgr.smithi152.jkoscf (mgr.14182) 1002 : audit [DBG] from='client.15282 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:10.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:09 smithi195 bash[19846]: cluster 2024-01-24T03:14:09.795541+0000 mgr.smithi152.jkoscf (mgr.14182) 1003 : cluster [DBG] pgmap v676: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:10.324 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:14:11.325 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:14:13.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:12 smithi152 bash[16344]: cluster 2024-01-24T03:14:11.796882+0000 mgr.smithi152.jkoscf (mgr.14182) 1004 : cluster [DBG] pgmap v677: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:13.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:12 smithi195 bash[19846]: cluster 2024-01-24T03:14:11.796882+0000 mgr.smithi152.jkoscf (mgr.14182) 1004 : cluster [DBG] pgmap v677: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:14.491 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:14:14.491 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:14:14.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:14 smithi152 bash[16344]: cluster 2024-01-24T03:14:13.798439+0000 mgr.smithi152.jkoscf (mgr.14182) 1005 : cluster [DBG] pgmap v678: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:14.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:14 smithi195 bash[19846]: cluster 2024-01-24T03:14:13.798439+0000 mgr.smithi152.jkoscf (mgr.14182) 1005 : cluster [DBG] pgmap v678: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:15.068 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:14:15.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:15 smithi152 bash[16344]: audit 2024-01-24T03:14:14.474100+0000 mgr.smithi152.jkoscf (mgr.14182) 1006 : audit [DBG] from='client.15286 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:15.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:15 smithi195 bash[19846]: audit 2024-01-24T03:14:14.474100+0000 mgr.smithi152.jkoscf (mgr.14182) 1006 : audit [DBG] from='client.15286 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:16.070 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:14:16.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:16 smithi152 bash[16344]: cluster 2024-01-24T03:14:15.800121+0000 mgr.smithi152.jkoscf (mgr.14182) 1007 : cluster [DBG] pgmap v679: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:16.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:16 smithi195 bash[19846]: cluster 2024-01-24T03:14:15.800121+0000 mgr.smithi152.jkoscf (mgr.14182) 1007 : cluster [DBG] pgmap v679: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:19.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:18 smithi195 bash[19846]: cluster 2024-01-24T03:14:17.801449+0000 mgr.smithi152.jkoscf (mgr.14182) 1008 : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:14:19.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:18 smithi152 bash[16344]: cluster 2024-01-24T03:14:17.801449+0000 mgr.smithi152.jkoscf (mgr.14182) 1008 : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:14:19.419 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:14:19.419 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:14:20.090 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:14:20.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:19 smithi195 bash[19846]: audit 2024-01-24T03:14:19.408084+0000 mgr.smithi152.jkoscf (mgr.14182) 1009 : audit [DBG] from='client.15290 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:20.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:19 smithi195 bash[19846]: cluster 2024-01-24T03:14:19.803242+0000 mgr.smithi152.jkoscf (mgr.14182) 1010 : cluster [DBG] pgmap v681: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:20.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:19 smithi152 bash[16344]: audit 2024-01-24T03:14:19.408084+0000 mgr.smithi152.jkoscf (mgr.14182) 1009 : audit [DBG] from='client.15290 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:20.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:19 smithi152 bash[16344]: cluster 2024-01-24T03:14:19.803242+0000 mgr.smithi152.jkoscf (mgr.14182) 1010 : cluster [DBG] pgmap v681: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:21.091 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:14:22.170 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:21 smithi152 bash[16344]: cluster 2024-01-24T03:14:21.804947+0000 mgr.smithi152.jkoscf (mgr.14182) 1011 : cluster [DBG] pgmap v682: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:22.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:21 smithi195 bash[19846]: cluster 2024-01-24T03:14:21.804947+0000 mgr.smithi152.jkoscf (mgr.14182) 1011 : cluster [DBG] pgmap v682: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:24.239 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:14:24.240 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:14:24.585 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:24 smithi152 bash[16344]: cluster 2024-01-24T03:14:23.806584+0000 mgr.smithi152.jkoscf (mgr.14182) 1012 : cluster [DBG] pgmap v683: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:24.937 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:14:24.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:24 smithi195 bash[19846]: cluster 2024-01-24T03:14:23.806584+0000 mgr.smithi152.jkoscf (mgr.14182) 1012 : cluster [DBG] pgmap v683: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:25.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:25 smithi152 bash[16344]: audit 2024-01-24T03:14:24.220835+0000 mgr.smithi152.jkoscf (mgr.14182) 1013 : audit [DBG] from='client.15294 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:25.938 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:14:25.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:25 smithi195 bash[19846]: audit 2024-01-24T03:14:24.220835+0000 mgr.smithi152.jkoscf (mgr.14182) 1013 : audit [DBG] from='client.15294 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:26.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:26 smithi152 bash[16344]: cluster 2024-01-24T03:14:25.808082+0000 mgr.smithi152.jkoscf (mgr.14182) 1014 : cluster [DBG] pgmap v684: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:26.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:26 smithi195 bash[19846]: cluster 2024-01-24T03:14:25.808082+0000 mgr.smithi152.jkoscf (mgr.14182) 1014 : cluster [DBG] pgmap v684: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:28.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:27 smithi195 bash[19846]: cluster 2024-01-24T03:14:27.808966+0000 mgr.smithi152.jkoscf (mgr.14182) 1015 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:14:28.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:27 smithi152 bash[16344]: cluster 2024-01-24T03:14:27.808966+0000 mgr.smithi152.jkoscf (mgr.14182) 1015 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:14:29.196 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:14:29.196 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:14:29.758 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:14:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:29 smithi152 bash[16344]: audit 2024-01-24T03:14:29.185416+0000 mgr.smithi152.jkoscf (mgr.14182) 1016 : audit [DBG] from='client.15298 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:29 smithi152 bash[16344]: cluster 2024-01-24T03:14:29.810764+0000 mgr.smithi152.jkoscf (mgr.14182) 1017 : cluster [DBG] pgmap v686: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:30.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:29 smithi195 bash[19846]: audit 2024-01-24T03:14:29.185416+0000 mgr.smithi152.jkoscf (mgr.14182) 1016 : audit [DBG] from='client.15298 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:30.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:29 smithi195 bash[19846]: cluster 2024-01-24T03:14:29.810764+0000 mgr.smithi152.jkoscf (mgr.14182) 1017 : cluster [DBG] pgmap v686: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:30.758 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:14:32.165 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:31 smithi152 bash[16344]: cluster 2024-01-24T03:14:31.812595+0000 mgr.smithi152.jkoscf (mgr.14182) 1018 : cluster [DBG] pgmap v687: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:31 smithi195 bash[19846]: cluster 2024-01-24T03:14:31.812595+0000 mgr.smithi152.jkoscf (mgr.14182) 1018 : cluster [DBG] pgmap v687: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:33.887 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:14:33.887 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:14:34.524 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:14:34.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:34 smithi152 bash[16344]: cluster 2024-01-24T03:14:33.814081+0000 mgr.smithi152.jkoscf (mgr.14182) 1019 : cluster [DBG] pgmap v688: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:34.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:34 smithi195 bash[19846]: cluster 2024-01-24T03:14:33.814081+0000 mgr.smithi152.jkoscf (mgr.14182) 1019 : cluster [DBG] pgmap v688: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:35.525 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:14:35.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:35 smithi152 bash[16344]: audit 2024-01-24T03:14:33.870082+0000 mgr.smithi152.jkoscf (mgr.14182) 1020 : audit [DBG] from='client.15302 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:35.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:35 smithi195 bash[19846]: audit 2024-01-24T03:14:33.870082+0000 mgr.smithi152.jkoscf (mgr.14182) 1020 : audit [DBG] from='client.15302 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:36.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:36 smithi152 bash[16344]: audit 2024-01-24T03:14:35.774345+0000 mon.smithi152 (mon.0) 905 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:14:36.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:36 smithi152 bash[16344]: cluster 2024-01-24T03:14:35.815933+0000 mgr.smithi152.jkoscf (mgr.14182) 1021 : cluster [DBG] pgmap v689: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:36.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:36 smithi152 bash[16344]: audit 2024-01-24T03:14:36.076420+0000 mon.smithi152 (mon.0) 906 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:14:36.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:36 smithi152 bash[16344]: audit 2024-01-24T03:14:36.383209+0000 mon.smithi152 (mon.0) 907 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:14:36.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:36 smithi152 bash[16344]: audit 2024-01-24T03:14:36.385246+0000 mon.smithi152 (mon.0) 908 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:14:36.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:36 smithi152 bash[16344]: audit 2024-01-24T03:14:36.394798+0000 mon.smithi152 (mon.0) 909 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:14:36.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:36 smithi152 bash[16344]: audit 2024-01-24T03:14:36.404189+0000 mon.smithi152 (mon.0) 910 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:14:36.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:36 smithi152 bash[16344]: audit 2024-01-24T03:14:36.421177+0000 mon.smithi152 (mon.0) 911 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:14:36.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:36 smithi195 bash[19846]: audit 2024-01-24T03:14:35.774345+0000 mon.smithi152 (mon.0) 905 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:14:36.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:36 smithi195 bash[19846]: cluster 2024-01-24T03:14:35.815933+0000 mgr.smithi152.jkoscf (mgr.14182) 1021 : cluster [DBG] pgmap v689: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:36.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:36 smithi195 bash[19846]: audit 2024-01-24T03:14:36.076420+0000 mon.smithi152 (mon.0) 906 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:14:36.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:36 smithi195 bash[19846]: audit 2024-01-24T03:14:36.383209+0000 mon.smithi152 (mon.0) 907 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:14:36.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:36 smithi195 bash[19846]: audit 2024-01-24T03:14:36.385246+0000 mon.smithi152 (mon.0) 908 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:14:36.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:36 smithi195 bash[19846]: audit 2024-01-24T03:14:36.394798+0000 mon.smithi152 (mon.0) 909 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:14:36.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:36 smithi195 bash[19846]: audit 2024-01-24T03:14:36.404189+0000 mon.smithi152 (mon.0) 910 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:14:36.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:36 smithi195 bash[19846]: audit 2024-01-24T03:14:36.421177+0000 mon.smithi152 (mon.0) 911 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:14:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:37 smithi152 bash[16344]: cluster 2024-01-24T03:14:36.395976+0000 mgr.smithi152.jkoscf (mgr.14182) 1022 : cluster [DBG] pgmap v690: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:14:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:37 smithi152 bash[16344]: cephadm 2024-01-24T03:14:36.425215+0000 mgr.smithi152.jkoscf (mgr.14182) 1023 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.zqvyfb on smithi195 2024-01-24T03:14:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:37 smithi152 bash[16344]: cluster 2024-01-24T03:14:36.519047+0000 mon.smithi152 (mon.0) 912 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:14:37.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:37 smithi152 bash[16344]: cluster 2024-01-24T03:14:36.519127+0000 mon.smithi152 (mon.0) 913 : cluster [INF] Cluster is now healthy 2024-01-24T03:14:37.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:37 smithi195 bash[19846]: cluster 2024-01-24T03:14:36.395976+0000 mgr.smithi152.jkoscf (mgr.14182) 1022 : cluster [DBG] pgmap v690: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:14:37.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:37 smithi195 bash[19846]: cephadm 2024-01-24T03:14:36.425215+0000 mgr.smithi152.jkoscf (mgr.14182) 1023 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.zqvyfb on smithi195 2024-01-24T03:14:37.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:37 smithi195 bash[19846]: cluster 2024-01-24T03:14:36.519047+0000 mon.smithi152 (mon.0) 912 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:14:37.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:37 smithi195 bash[19846]: cluster 2024-01-24T03:14:36.519127+0000 mon.smithi152 (mon.0) 913 : cluster [INF] Cluster is now healthy 2024-01-24T03:14:38.819 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:14:38.819 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:12:21.764523Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.cptpnf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:14:39.417 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:14:39.802 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:39 smithi195 bash[19846]: cluster 2024-01-24T03:14:38.397171+0000 mgr.smithi152.jkoscf (mgr.14182) 1024 : cluster [DBG] pgmap v691: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:14:39.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:39 smithi195 bash[19846]: audit 2024-01-24T03:14:38.805912+0000 mgr.smithi152.jkoscf (mgr.14182) 1025 : audit [DBG] from='client.15306 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:39.803 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:39 smithi195 bash[19846]: audit 2024-01-24T03:14:39.294953+0000 mon.smithi152 (mon.0) 914 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:14:39.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:39 smithi152 bash[16344]: cluster 2024-01-24T03:14:38.397171+0000 mgr.smithi152.jkoscf (mgr.14182) 1024 : cluster [DBG] pgmap v691: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:14:39.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:39 smithi152 bash[16344]: audit 2024-01-24T03:14:38.805912+0000 mgr.smithi152.jkoscf (mgr.14182) 1025 : audit [DBG] from='client.15306 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:39.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:39 smithi152 bash[16344]: audit 2024-01-24T03:14:39.294953+0000 mon.smithi152 (mon.0) 914 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:14:40.418 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:14:40.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:40 smithi152 bash[16344]: audit 2024-01-24T03:14:40.236568+0000 mon.smithi152 (mon.0) 915 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.zqvyfb"}]: dispatch 2024-01-24T03:14:40.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:40 smithi195 bash[19846]: audit 2024-01-24T03:14:40.236568+0000 mon.smithi152 (mon.0) 915 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.zqvyfb"}]: dispatch 2024-01-24T03:14:41.783 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: cephadm 2024-01-24T03:14:40.235373+0000 mgr.smithi152.jkoscf (mgr.14182) 1026 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb 2024-01-24T03:14:41.783 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:14:41.783 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb 2024-01-24T03:14:41.783 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.783 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:14:41.783 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.783 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.zqvyfb ... 2024-01-24T03:14:41.783 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:41.784 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:14:41.784 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:14:41.784 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:14:41.784 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:41.784 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:14:41.784 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:14:41.784 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:14:41.784 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:14:41.784 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:14:41.784 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb 2024-01-24T03:14:41.784 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:14:41.784 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb 2024-01-24T03:14:41.784 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.zqvyfb ... 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: cephadm 2024-01-24T03:14:40.235942+0000 mgr.smithi152.jkoscf (mgr.14182) 1027 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: cephadm 2024-01-24T03:14:40.238165+0000 mgr.smithi152.jkoscf (mgr.14182) 1028 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.785 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:14:41.786 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.786 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.zqvyfb ... 2024-01-24T03:14:41.786 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:41.786 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:14:41.786 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:14:41.786 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:14:41.786 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:41.786 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: cephadm 2024-01-24T03:14:40.243316+0000 mgr.smithi152.jkoscf (mgr.14182) 1029 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.ynfqvr on smithi152 2024-01-24T03:14:41.786 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:41 smithi152 bash[16344]: cluster 2024-01-24T03:14:40.398605+0000 mgr.smithi152.jkoscf (mgr.14182) 1030 : cluster [DBG] pgmap v692: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:14:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: cephadm 2024-01-24T03:14:40.235373+0000 mgr.smithi152.jkoscf (mgr.14182) 1026 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb 2024-01-24T03:14:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:14:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb 2024-01-24T03:14:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:14:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.zqvyfb ... 2024-01-24T03:14:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:14:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:14:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.zqvyfb ... 2024-01-24T03:14:41.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: cephadm 2024-01-24T03:14:40.235942+0000 mgr.smithi152.jkoscf (mgr.14182) 1027 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: cephadm 2024-01-24T03:14:40.238165+0000 mgr.smithi152.jkoscf (mgr.14182) 1028 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.zqvyfb ... 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:41.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:14:41.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:14:41.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:14:41.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:41.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: cephadm 2024-01-24T03:14:40.243316+0000 mgr.smithi152.jkoscf (mgr.14182) 1029 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.ynfqvr on smithi152 2024-01-24T03:14:41.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:41 smithi195 bash[19846]: cluster 2024-01-24T03:14:40.398605+0000 mgr.smithi152.jkoscf (mgr.14182) 1030 : cluster [DBG] pgmap v692: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:14:43.561 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:14:43.561 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:31.915433Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.aqlapx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-aqlapx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.aqlapx\nDeploy daemon haproxy.nfs.foo.smithi195.aqlapx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.762738Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jtrkrk on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jtrkrk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jtrkrk\nDeploy daemon haproxy.nfs.foo.smithi152.jtrkrk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:13:35.767027Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.aupnvu on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:14:43.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:43 smithi152 bash[16344]: cluster 2024-01-24T03:14:42.400005+0000 mgr.smithi152.jkoscf (mgr.14182) 1031 : cluster [DBG] pgmap v693: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:14:43.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:43 smithi195 bash[19846]: cluster 2024-01-24T03:14:42.400005+0000 mgr.smithi152.jkoscf (mgr.14182) 1031 : cluster [DBG] pgmap v693: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:14:44.318 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:14:44.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:44 smithi152 bash[16344]: audit 2024-01-24T03:14:43.541521+0000 mgr.smithi152.jkoscf (mgr.14182) 1032 : audit [DBG] from='client.15310 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:44.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:44 smithi152 bash[16344]: audit 2024-01-24T03:14:44.302114+0000 mon.smithi152 (mon.0) 916 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.ynfqvr"}]: dispatch 2024-01-24T03:14:44.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:44 smithi195 bash[19846]: audit 2024-01-24T03:14:43.541521+0000 mgr.smithi152.jkoscf (mgr.14182) 1032 : audit [DBG] from='client.15310 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:44.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:44 smithi195 bash[19846]: audit 2024-01-24T03:14:44.302114+0000 mon.smithi152 (mon.0) 916 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.ynfqvr"}]: dispatch 2024-01-24T03:14:45.319 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:14:45.588 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: cephadm 2024-01-24T03:14:44.301477+0000 mgr.smithi152.jkoscf (mgr.14182) 1033 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr 2024-01-24T03:14:45.588 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:14:45.588 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr 2024-01-24T03:14:45.588 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.588 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:14:45.588 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.588 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.ynfqvr ... 2024-01-24T03:14:45.588 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:45.588 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:14:45.589 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:14:45.589 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:14:45.589 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:45.589 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:14:45.589 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:14:45.589 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:14:45.589 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:14:45.589 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:14:45.589 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr 2024-01-24T03:14:45.589 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:14:45.589 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr 2024-01-24T03:14:45.590 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.590 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:14:45.590 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.590 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.ynfqvr ... 2024-01-24T03:14:45.590 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:45.590 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:14:45.590 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:14:45.590 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:14:45.590 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:45.590 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: cephadm 2024-01-24T03:14:44.301713+0000 mgr.smithi152.jkoscf (mgr.14182) 1034 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.590 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: cephadm 2024-01-24T03:14:44.303042+0000 mgr.smithi152.jkoscf (mgr.14182) 1035 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr 2024-01-24T03:14:45.591 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:14:45.591 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr 2024-01-24T03:14:45.591 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.591 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:14:45.591 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.591 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.ynfqvr ... 2024-01-24T03:14:45.591 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:45.591 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:14:45.591 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:14:45.591 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:14:45.591 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:45.591 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: cephadm 2024-01-24T03:14:44.304817+0000 mgr.smithi152.jkoscf (mgr.14182) 1036 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:14:45.592 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: cephadm 2024-01-24T03:14:44.306351+0000 mgr.smithi152.jkoscf (mgr.14182) 1037 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:14:45.592 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: cluster 2024-01-24T03:14:44.307919+0000 mgr.smithi152.jkoscf (mgr.14182) 1038 : cluster [DBG] pgmap v694: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-01-24T03:14:45.592 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:45 smithi152 bash[16344]: cluster 2024-01-24T03:14:44.550128+0000 mon.smithi152 (mon.0) 917 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:14:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: cephadm 2024-01-24T03:14:44.301477+0000 mgr.smithi152.jkoscf (mgr.14182) 1033 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr 2024-01-24T03:14:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:14:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr 2024-01-24T03:14:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:14:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.ynfqvr ... 2024-01-24T03:14:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:14:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.ynfqvr ... 2024-01-24T03:14:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:14:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:14:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:14:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: cephadm 2024-01-24T03:14:44.301713+0000 mgr.smithi152.jkoscf (mgr.14182) 1034 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: cephadm 2024-01-24T03:14:44.303042+0000 mgr.smithi152.jkoscf (mgr.14182) 1035 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr 2024-01-24T03:14:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:14:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr 2024-01-24T03:14:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:14:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr 2024-01-24T03:14:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.ynfqvr ... 2024-01-24T03:14:45.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:45.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:14:45.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:14:45.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:14:45.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:14:45.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: cephadm 2024-01-24T03:14:44.304817+0000 mgr.smithi152.jkoscf (mgr.14182) 1036 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:14:45.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: cephadm 2024-01-24T03:14:44.306351+0000 mgr.smithi152.jkoscf (mgr.14182) 1037 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:14:45.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: cluster 2024-01-24T03:14:44.307919+0000 mgr.smithi152.jkoscf (mgr.14182) 1038 : cluster [DBG] pgmap v694: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-01-24T03:14:45.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:45 smithi195 bash[19846]: cluster 2024-01-24T03:14:44.550128+0000 mon.smithi152 (mon.0) 917 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:14:47.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:47 smithi152 bash[16344]: cluster 2024-01-24T03:14:46.309709+0000 mgr.smithi152.jkoscf (mgr.14182) 1039 : cluster [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-01-24T03:14:47.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:47 smithi195 bash[19846]: cluster 2024-01-24T03:14:46.309709+0000 mgr.smithi152.jkoscf (mgr.14182) 1039 : cluster [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-01-24T03:14:48.626 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:14:48.626 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:14:48.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:48 smithi195 bash[19846]: audit 2024-01-24T03:14:47.665972+0000 mon.smithi152 (mon.0) 918 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:14:49.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:48 smithi152 bash[16344]: audit 2024-01-24T03:14:47.665972+0000 mon.smithi152 (mon.0) 918 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:14:49.292 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:14:49.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:49 smithi195 bash[19846]: cluster 2024-01-24T03:14:48.311071+0000 mgr.smithi152.jkoscf (mgr.14182) 1040 : cluster [DBG] pgmap v696: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 171 B/s rd, 0 op/s 2024-01-24T03:14:49.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:49 smithi195 bash[19846]: audit 2024-01-24T03:14:48.605246+0000 mgr.smithi152.jkoscf (mgr.14182) 1041 : audit [DBG] from='client.15314 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:50.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:49 smithi152 bash[16344]: cluster 2024-01-24T03:14:48.311071+0000 mgr.smithi152.jkoscf (mgr.14182) 1040 : cluster [DBG] pgmap v696: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 171 B/s rd, 0 op/s 2024-01-24T03:14:50.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:49 smithi152 bash[16344]: audit 2024-01-24T03:14:48.605246+0000 mgr.smithi152.jkoscf (mgr.14182) 1041 : audit [DBG] from='client.15314 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:50.293 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:14:51.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:51 smithi195 bash[19846]: cluster 2024-01-24T03:14:50.312893+0000 mgr.smithi152.jkoscf (mgr.14182) 1042 : cluster [DBG] pgmap v697: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:52.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:51 smithi152 bash[16344]: cluster 2024-01-24T03:14:50.312893+0000 mgr.smithi152.jkoscf (mgr.14182) 1042 : cluster [DBG] pgmap v697: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:53.424 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:14:53.424 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:14:53.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:53 smithi152 bash[16344]: cluster 2024-01-24T03:14:52.314275+0000 mgr.smithi152.jkoscf (mgr.14182) 1043 : cluster [DBG] pgmap v698: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:53 smithi195 bash[19846]: cluster 2024-01-24T03:14:52.314275+0000 mgr.smithi152.jkoscf (mgr.14182) 1043 : cluster [DBG] pgmap v698: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:54.073 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:14:54.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:54 smithi195 bash[19846]: audit 2024-01-24T03:14:53.405883+0000 mgr.smithi152.jkoscf (mgr.14182) 1044 : audit [DBG] from='client.15318 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:54.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:54 smithi195 bash[19846]: audit 2024-01-24T03:14:54.296027+0000 mon.smithi152 (mon.0) 919 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:14:55.074 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:14:55.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:54 smithi152 bash[16344]: audit 2024-01-24T03:14:53.405883+0000 mgr.smithi152.jkoscf (mgr.14182) 1044 : audit [DBG] from='client.15318 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:55.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:54 smithi152 bash[16344]: audit 2024-01-24T03:14:54.296027+0000 mon.smithi152 (mon.0) 919 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:14:55.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:55 smithi195 bash[19846]: cluster 2024-01-24T03:14:54.320644+0000 mgr.smithi152.jkoscf (mgr.14182) 1045 : cluster [DBG] pgmap v699: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:56.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:55 smithi152 bash[16344]: cluster 2024-01-24T03:14:54.320644+0000 mgr.smithi152.jkoscf (mgr.14182) 1045 : cluster [DBG] pgmap v699: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:57.966 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:57 smithi152 bash[16344]: cluster 2024-01-24T03:14:56.322491+0000 mgr.smithi152.jkoscf (mgr.14182) 1046 : cluster [DBG] pgmap v700: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:57.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:57 smithi195 bash[19846]: cluster 2024-01-24T03:14:56.322491+0000 mgr.smithi152.jkoscf (mgr.14182) 1046 : cluster [DBG] pgmap v700: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:14:58.409 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:14:58.409 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:14:58.963 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:14:59.964 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:14:59.977 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:59 smithi152 bash[16344]: cluster 2024-01-24T03:14:58.323796+0000 mgr.smithi152.jkoscf (mgr.14182) 1047 : cluster [DBG] pgmap v701: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:14:59.977 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:14:59 smithi152 bash[16344]: audit 2024-01-24T03:14:58.394860+0000 mgr.smithi152.jkoscf (mgr.14182) 1048 : audit [DBG] from='client.15322 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:14:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:59 smithi195 bash[19846]: cluster 2024-01-24T03:14:58.323796+0000 mgr.smithi152.jkoscf (mgr.14182) 1047 : cluster [DBG] pgmap v701: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:14:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:14:59 smithi195 bash[19846]: audit 2024-01-24T03:14:58.394860+0000 mgr.smithi152.jkoscf (mgr.14182) 1048 : audit [DBG] from='client.15322 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:01 smithi195 bash[19846]: cluster 2024-01-24T03:15:00.325104+0000 mgr.smithi152.jkoscf (mgr.14182) 1049 : cluster [DBG] pgmap v702: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:02.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:01 smithi152 bash[16344]: cluster 2024-01-24T03:15:00.325104+0000 mgr.smithi152.jkoscf (mgr.14182) 1049 : cluster [DBG] pgmap v702: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:03.143 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:15:03.143 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:15:03.735 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:15:03.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:03 smithi195 bash[19846]: cluster 2024-01-24T03:15:02.326866+0000 mgr.smithi152.jkoscf (mgr.14182) 1050 : cluster [DBG] pgmap v703: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:04.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:03 smithi152 bash[16344]: cluster 2024-01-24T03:15:02.326866+0000 mgr.smithi152.jkoscf (mgr.14182) 1050 : cluster [DBG] pgmap v703: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:04.736 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:15:04.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:04 smithi195 bash[19846]: audit 2024-01-24T03:15:03.125305+0000 mgr.smithi152.jkoscf (mgr.14182) 1051 : audit [DBG] from='client.15326 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:05.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:04 smithi152 bash[16344]: audit 2024-01-24T03:15:03.125305+0000 mgr.smithi152.jkoscf (mgr.14182) 1051 : audit [DBG] from='client.15326 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:05.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:05 smithi195 bash[19846]: cluster 2024-01-24T03:15:04.328511+0000 mgr.smithi152.jkoscf (mgr.14182) 1052 : cluster [DBG] pgmap v704: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:06.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:05 smithi152 bash[16344]: cluster 2024-01-24T03:15:04.328511+0000 mgr.smithi152.jkoscf (mgr.14182) 1052 : cluster [DBG] pgmap v704: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:07.826 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:15:07.826 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:15:08.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:07 smithi152 bash[16344]: cluster 2024-01-24T03:15:06.330366+0000 mgr.smithi152.jkoscf (mgr.14182) 1053 : cluster [DBG] pgmap v705: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:08.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:07 smithi195 bash[19846]: cluster 2024-01-24T03:15:06.330366+0000 mgr.smithi152.jkoscf (mgr.14182) 1053 : cluster [DBG] pgmap v705: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:08.391 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:15:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:08 smithi152 bash[16344]: audit 2024-01-24T03:15:07.807651+0000 mgr.smithi152.jkoscf (mgr.14182) 1054 : audit [DBG] from='client.15330 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:09.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:08 smithi195 bash[19846]: audit 2024-01-24T03:15:07.807651+0000 mgr.smithi152.jkoscf (mgr.14182) 1054 : audit [DBG] from='client.15330 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:09.392 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:15:10.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:09 smithi152 bash[16344]: cluster 2024-01-24T03:15:08.331773+0000 mgr.smithi152.jkoscf (mgr.14182) 1055 : cluster [DBG] pgmap v706: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:15:10.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:09 smithi195 bash[19846]: cluster 2024-01-24T03:15:08.331773+0000 mgr.smithi152.jkoscf (mgr.14182) 1055 : cluster [DBG] pgmap v706: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:15:12.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:11 smithi152 bash[16344]: cluster 2024-01-24T03:15:10.333672+0000 mgr.smithi152.jkoscf (mgr.14182) 1056 : cluster [DBG] pgmap v707: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:12.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:11 smithi195 bash[19846]: cluster 2024-01-24T03:15:10.333672+0000 mgr.smithi152.jkoscf (mgr.14182) 1056 : cluster [DBG] pgmap v707: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:12.643 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:15:12.643 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:15:13.241 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:15:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:13 smithi152 bash[16344]: cluster 2024-01-24T03:15:12.334917+0000 mgr.smithi152.jkoscf (mgr.14182) 1057 : cluster [DBG] pgmap v708: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:13 smithi152 bash[16344]: audit 2024-01-24T03:15:12.627693+0000 mgr.smithi152.jkoscf (mgr.14182) 1058 : audit [DBG] from='client.15334 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:14.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:13 smithi195 bash[19846]: cluster 2024-01-24T03:15:12.334917+0000 mgr.smithi152.jkoscf (mgr.14182) 1057 : cluster [DBG] pgmap v708: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:14.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:13 smithi195 bash[19846]: audit 2024-01-24T03:15:12.627693+0000 mgr.smithi152.jkoscf (mgr.14182) 1058 : audit [DBG] from='client.15334 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:14.242 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:15:16.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:15 smithi152 bash[16344]: cluster 2024-01-24T03:15:14.336453+0000 mgr.smithi152.jkoscf (mgr.14182) 1059 : cluster [DBG] pgmap v709: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:16.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:15 smithi195 bash[19846]: cluster 2024-01-24T03:15:14.336453+0000 mgr.smithi152.jkoscf (mgr.14182) 1059 : cluster [DBG] pgmap v709: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:17.502 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:15:17.502 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:15:17.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:17 smithi152 bash[16344]: cluster 2024-01-24T03:15:16.338311+0000 mgr.smithi152.jkoscf (mgr.14182) 1060 : cluster [DBG] pgmap v710: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:18.097 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:15:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:17 smithi195 bash[19846]: cluster 2024-01-24T03:15:16.338311+0000 mgr.smithi152.jkoscf (mgr.14182) 1060 : cluster [DBG] pgmap v710: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:19.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:18 smithi152 bash[16344]: audit 2024-01-24T03:15:17.483350+0000 mgr.smithi152.jkoscf (mgr.14182) 1061 : audit [DBG] from='client.15338 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:19.098 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:15:19.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:18 smithi195 bash[19846]: audit 2024-01-24T03:15:17.483350+0000 mgr.smithi152.jkoscf (mgr.14182) 1061 : audit [DBG] from='client.15338 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:20.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:19 smithi152 bash[16344]: cluster 2024-01-24T03:15:18.339736+0000 mgr.smithi152.jkoscf (mgr.14182) 1062 : cluster [DBG] pgmap v711: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:15:20.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:19 smithi195 bash[19846]: cluster 2024-01-24T03:15:18.339736+0000 mgr.smithi152.jkoscf (mgr.14182) 1062 : cluster [DBG] pgmap v711: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:15:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:21 smithi152 bash[16344]: cluster 2024-01-24T03:15:20.341547+0000 mgr.smithi152.jkoscf (mgr.14182) 1063 : cluster [DBG] pgmap v712: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:22.227 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:15:22.227 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:15:22.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:21 smithi195 bash[19846]: cluster 2024-01-24T03:15:20.341547+0000 mgr.smithi152.jkoscf (mgr.14182) 1063 : cluster [DBG] pgmap v712: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:22.834 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:15:23.835 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:15:24.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:23 smithi152 bash[16344]: audit 2024-01-24T03:15:22.216937+0000 mgr.smithi152.jkoscf (mgr.14182) 1064 : audit [DBG] from='client.15342 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:24.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:23 smithi152 bash[16344]: cluster 2024-01-24T03:15:22.343605+0000 mgr.smithi152.jkoscf (mgr.14182) 1065 : cluster [DBG] pgmap v713: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:24.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:23 smithi195 bash[19846]: audit 2024-01-24T03:15:22.216937+0000 mgr.smithi152.jkoscf (mgr.14182) 1064 : audit [DBG] from='client.15342 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:24.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:23 smithi195 bash[19846]: cluster 2024-01-24T03:15:22.343605+0000 mgr.smithi152.jkoscf (mgr.14182) 1065 : cluster [DBG] pgmap v713: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:26.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:25 smithi152 bash[16344]: cluster 2024-01-24T03:15:24.345200+0000 mgr.smithi152.jkoscf (mgr.14182) 1066 : cluster [DBG] pgmap v714: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:25 smithi195 bash[19846]: cluster 2024-01-24T03:15:24.345200+0000 mgr.smithi152.jkoscf (mgr.14182) 1066 : cluster [DBG] pgmap v714: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:27.224 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:15:27.224 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:15:27.832 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:15:28.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:27 smithi152 bash[16344]: cluster 2024-01-24T03:15:26.346992+0000 mgr.smithi152.jkoscf (mgr.14182) 1067 : cluster [DBG] pgmap v715: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:28.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:27 smithi195 bash[19846]: cluster 2024-01-24T03:15:26.346992+0000 mgr.smithi152.jkoscf (mgr.14182) 1067 : cluster [DBG] pgmap v715: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:28.833 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:15:29.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:28 smithi152 bash[16344]: audit 2024-01-24T03:15:27.206780+0000 mgr.smithi152.jkoscf (mgr.14182) 1068 : audit [DBG] from='client.15346 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:29.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:28 smithi195 bash[19846]: audit 2024-01-24T03:15:27.206780+0000 mgr.smithi152.jkoscf (mgr.14182) 1068 : audit [DBG] from='client.15346 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:29 smithi152 bash[16344]: cluster 2024-01-24T03:15:28.348344+0000 mgr.smithi152.jkoscf (mgr.14182) 1069 : cluster [DBG] pgmap v716: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:15:30.195 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:29 smithi195 bash[19846]: cluster 2024-01-24T03:15:28.348344+0000 mgr.smithi152.jkoscf (mgr.14182) 1069 : cluster [DBG] pgmap v716: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:15:32.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:31 smithi152 bash[16344]: cluster 2024-01-24T03:15:30.350131+0000 mgr.smithi152.jkoscf (mgr.14182) 1070 : cluster [DBG] pgmap v717: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:32.089 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:15:32.089 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:15:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:31 smithi195 bash[19846]: cluster 2024-01-24T03:15:30.350131+0000 mgr.smithi152.jkoscf (mgr.14182) 1070 : cluster [DBG] pgmap v717: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:32.719 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:15:33.720 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:15:34.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:33 smithi152 bash[16344]: audit 2024-01-24T03:15:32.076295+0000 mgr.smithi152.jkoscf (mgr.14182) 1071 : audit [DBG] from='client.15350 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:34.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:33 smithi152 bash[16344]: cluster 2024-01-24T03:15:32.351970+0000 mgr.smithi152.jkoscf (mgr.14182) 1072 : cluster [DBG] pgmap v718: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:34.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:33 smithi195 bash[19846]: audit 2024-01-24T03:15:32.076295+0000 mgr.smithi152.jkoscf (mgr.14182) 1071 : audit [DBG] from='client.15350 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:34.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:33 smithi195 bash[19846]: cluster 2024-01-24T03:15:32.351970+0000 mgr.smithi152.jkoscf (mgr.14182) 1072 : cluster [DBG] pgmap v718: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:36.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:35 smithi195 bash[19846]: cluster 2024-01-24T03:15:34.353573+0000 mgr.smithi152.jkoscf (mgr.14182) 1073 : cluster [DBG] pgmap v719: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:36.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:35 smithi152 bash[16344]: cluster 2024-01-24T03:15:34.353573+0000 mgr.smithi152.jkoscf (mgr.14182) 1073 : cluster [DBG] pgmap v719: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:37.013 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:15:37.013 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:15:37.647 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:15:38.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:37 smithi152 bash[16344]: cluster 2024-01-24T03:15:36.355407+0000 mgr.smithi152.jkoscf (mgr.14182) 1074 : cluster [DBG] pgmap v720: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:38.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:37 smithi195 bash[19846]: cluster 2024-01-24T03:15:36.355407+0000 mgr.smithi152.jkoscf (mgr.14182) 1074 : cluster [DBG] pgmap v720: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:38.647 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:15:39.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:38 smithi152 bash[16344]: audit 2024-01-24T03:15:36.998110+0000 mgr.smithi152.jkoscf (mgr.14182) 1075 : audit [DBG] from='client.15354 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:39.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:38 smithi195 bash[19846]: audit 2024-01-24T03:15:36.998110+0000 mgr.smithi152.jkoscf (mgr.14182) 1075 : audit [DBG] from='client.15354 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:40.019 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:39 smithi152 bash[16344]: cluster 2024-01-24T03:15:38.356756+0000 mgr.smithi152.jkoscf (mgr.14182) 1076 : cluster [DBG] pgmap v721: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:15:40.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:39 smithi195 bash[19846]: cluster 2024-01-24T03:15:38.356756+0000 mgr.smithi152.jkoscf (mgr.14182) 1076 : cluster [DBG] pgmap v721: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:15:41.757 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:15:41.757 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:15:42.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:41 smithi152 bash[16344]: cluster 2024-01-24T03:15:40.358213+0000 mgr.smithi152.jkoscf (mgr.14182) 1077 : cluster [DBG] pgmap v722: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:42.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:41 smithi195 bash[19846]: cluster 2024-01-24T03:15:40.358213+0000 mgr.smithi152.jkoscf (mgr.14182) 1077 : cluster [DBG] pgmap v722: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:42.386 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:15:43.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:42 smithi195 bash[19846]: audit 2024-01-24T03:15:41.739547+0000 mgr.smithi152.jkoscf (mgr.14182) 1078 : audit [DBG] from='client.15358 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:43.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:42 smithi152 bash[16344]: audit 2024-01-24T03:15:41.739547+0000 mgr.smithi152.jkoscf (mgr.14182) 1078 : audit [DBG] from='client.15358 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:43.387 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:15:44.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:43 smithi195 bash[19846]: cluster 2024-01-24T03:15:42.360010+0000 mgr.smithi152.jkoscf (mgr.14182) 1079 : cluster [DBG] pgmap v723: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:44.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:43 smithi152 bash[16344]: cluster 2024-01-24T03:15:42.360010+0000 mgr.smithi152.jkoscf (mgr.14182) 1079 : cluster [DBG] pgmap v723: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:45.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:44 smithi152 bash[16344]: audit 2024-01-24T03:15:44.310211+0000 mon.smithi152 (mon.0) 920 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:15:45.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:44 smithi152 bash[16344]: cluster 2024-01-24T03:15:44.361678+0000 mgr.smithi152.jkoscf (mgr.14182) 1080 : cluster [DBG] pgmap v724: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:45.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:44 smithi152 bash[16344]: audit 2024-01-24T03:15:44.642654+0000 mon.smithi152 (mon.0) 921 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:15:45.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:44 smithi152 bash[16344]: audit 2024-01-24T03:15:44.644146+0000 mon.smithi152 (mon.0) 922 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:15:45.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:44 smithi152 bash[16344]: audit 2024-01-24T03:15:44.653488+0000 mon.smithi152 (mon.0) 923 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:15:45.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:44 smithi152 bash[16344]: cluster 2024-01-24T03:15:44.654686+0000 mgr.smithi152.jkoscf (mgr.14182) 1081 : cluster [DBG] pgmap v725: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:15:45.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:44 smithi152 bash[16344]: audit 2024-01-24T03:15:44.663435+0000 mon.smithi152 (mon.0) 924 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:15:45.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:44 smithi152 bash[16344]: audit 2024-01-24T03:15:44.678524+0000 mon.smithi152 (mon.0) 925 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:15:45.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:44 smithi152 bash[16344]: cephadm 2024-01-24T03:15:44.681705+0000 mgr.smithi152.jkoscf (mgr.14182) 1082 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.tljfxr on smithi195 2024-01-24T03:15:45.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:44 smithi195 bash[19846]: audit 2024-01-24T03:15:44.310211+0000 mon.smithi152 (mon.0) 920 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:15:45.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:44 smithi195 bash[19846]: cluster 2024-01-24T03:15:44.361678+0000 mgr.smithi152.jkoscf (mgr.14182) 1080 : cluster [DBG] pgmap v724: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:15:45.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:44 smithi195 bash[19846]: audit 2024-01-24T03:15:44.642654+0000 mon.smithi152 (mon.0) 921 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:15:45.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:44 smithi195 bash[19846]: audit 2024-01-24T03:15:44.644146+0000 mon.smithi152 (mon.0) 922 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:15:45.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:44 smithi195 bash[19846]: audit 2024-01-24T03:15:44.653488+0000 mon.smithi152 (mon.0) 923 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:15:45.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:44 smithi195 bash[19846]: cluster 2024-01-24T03:15:44.654686+0000 mgr.smithi152.jkoscf (mgr.14182) 1081 : cluster [DBG] pgmap v725: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:15:45.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:44 smithi195 bash[19846]: audit 2024-01-24T03:15:44.663435+0000 mon.smithi152 (mon.0) 924 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:15:45.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:44 smithi195 bash[19846]: audit 2024-01-24T03:15:44.678524+0000 mon.smithi152 (mon.0) 925 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:15:45.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:44 smithi195 bash[19846]: cephadm 2024-01-24T03:15:44.681705+0000 mgr.smithi152.jkoscf (mgr.14182) 1082 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.tljfxr on smithi195 2024-01-24T03:15:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:45 smithi195 bash[19846]: cluster 2024-01-24T03:15:44.875891+0000 mon.smithi152 (mon.0) 926 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:15:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:45 smithi195 bash[19846]: cluster 2024-01-24T03:15:44.875956+0000 mon.smithi152 (mon.0) 927 : cluster [INF] Cluster is now healthy 2024-01-24T03:15:46.318 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:45 smithi152 bash[16344]: cluster 2024-01-24T03:15:44.875891+0000 mon.smithi152 (mon.0) 926 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:15:46.318 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:45 smithi152 bash[16344]: cluster 2024-01-24T03:15:44.875956+0000 mon.smithi152 (mon.0) 927 : cluster [INF] Cluster is now healthy 2024-01-24T03:15:46.771 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:15:46.772 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:13:35.769498Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ipqqsl on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:15:47.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:46 smithi152 bash[16344]: cluster 2024-01-24T03:15:46.656165+0000 mgr.smithi152.jkoscf (mgr.14182) 1083 : cluster [DBG] pgmap v726: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:15:47.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:46 smithi152 bash[16344]: audit 2024-01-24T03:15:46.761618+0000 mgr.smithi152.jkoscf (mgr.14182) 1084 : audit [DBG] from='client.15362 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:47.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:46 smithi195 bash[19846]: cluster 2024-01-24T03:15:46.656165+0000 mgr.smithi152.jkoscf (mgr.14182) 1083 : cluster [DBG] pgmap v726: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:15:47.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:46 smithi195 bash[19846]: audit 2024-01-24T03:15:46.761618+0000 mgr.smithi152.jkoscf (mgr.14182) 1084 : audit [DBG] from='client.15362 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:47.390 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:15:48.391 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:15:48.743 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:48 smithi195 bash[19846]: audit 2024-01-24T03:15:48.445397+0000 mon.smithi152 (mon.0) 928 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.tljfxr"}]: dispatch 2024-01-24T03:15:48.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:48 smithi152 bash[16344]: audit 2024-01-24T03:15:48.445397+0000 mon.smithi152 (mon.0) 928 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.tljfxr"}]: dispatch 2024-01-24T03:15:49.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: cephadm 2024-01-24T03:15:48.444285+0000 mgr.smithi152.jkoscf (mgr.14182) 1085 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr 2024-01-24T03:15:49.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:15:49.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr 2024-01-24T03:15:49.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:15:49.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.tljfxr ... 2024-01-24T03:15:49.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:15:49.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.tljfxr ... 2024-01-24T03:15:49.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:49.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:15:49.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:15:49.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:15:49.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:49.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: cephadm 2024-01-24T03:15:48.444799+0000 mgr.smithi152.jkoscf (mgr.14182) 1086 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: cephadm 2024-01-24T03:15:48.446671+0000 mgr.smithi152.jkoscf (mgr.14182) 1087 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr 2024-01-24T03:15:49.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:15:49.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr 2024-01-24T03:15:49.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:15:49.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.tljfxr ... 2024-01-24T03:15:49.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:49.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:15:49.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:15:49.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:15:49.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:49.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: cephadm 2024-01-24T03:15:48.449645+0000 mgr.smithi152.jkoscf (mgr.14182) 1088 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.hbbqmn on smithi152 2024-01-24T03:15:49.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:49 smithi152 bash[16344]: cluster 2024-01-24T03:15:48.657228+0000 mgr.smithi152.jkoscf (mgr.14182) 1089 : cluster [DBG] pgmap v727: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:15:49.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: cephadm 2024-01-24T03:15:48.444285+0000 mgr.smithi152.jkoscf (mgr.14182) 1085 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr 2024-01-24T03:15:49.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:15:49.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr 2024-01-24T03:15:49.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:15:49.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.tljfxr ... 2024-01-24T03:15:49.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:49.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:15:49.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:15:49.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:15:49.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:49.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:15:49.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:15:49.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.tljfxr ... 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:15:49.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: cephadm 2024-01-24T03:15:48.444799+0000 mgr.smithi152.jkoscf (mgr.14182) 1086 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: cephadm 2024-01-24T03:15:48.446671+0000 mgr.smithi152.jkoscf (mgr.14182) 1087 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.tljfxr ... 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:49.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: cephadm 2024-01-24T03:15:48.449645+0000 mgr.smithi152.jkoscf (mgr.14182) 1088 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.hbbqmn on smithi152 2024-01-24T03:15:49.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:49 smithi195 bash[19846]: cluster 2024-01-24T03:15:48.657228+0000 mgr.smithi152.jkoscf (mgr.14182) 1089 : cluster [DBG] pgmap v727: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:15:51.640 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:15:51.640 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:40.237930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.zqvyfb on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-zqvyfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.zqvyfb\nDeploy daemon haproxy.nfs.foo.smithi195.zqvyfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.302906Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.ynfqvr on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-ynfqvr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.ynfqvr\nDeploy daemon haproxy.nfs.foo.smithi152.ynfqvr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:14:44.304722Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.evwhca on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:15:51.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:51 smithi195 bash[19846]: cluster 2024-01-24T03:15:50.659194+0000 mgr.smithi152.jkoscf (mgr.14182) 1090 : cluster [DBG] pgmap v728: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:15:51.999 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:51 smithi152 bash[16344]: cluster 2024-01-24T03:15:50.659194+0000 mgr.smithi152.jkoscf (mgr.14182) 1090 : cluster [DBG] pgmap v728: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:15:52.248 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:15:52.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:52 smithi195 bash[19846]: audit 2024-01-24T03:15:51.622200+0000 mgr.smithi152.jkoscf (mgr.14182) 1091 : audit [DBG] from='client.15366 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:52.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:52 smithi195 bash[19846]: audit 2024-01-24T03:15:52.425868+0000 mon.smithi152 (mon.0) 929 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.hbbqmn"}]: dispatch 2024-01-24T03:15:53.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:52 smithi152 bash[16344]: audit 2024-01-24T03:15:51.622200+0000 mgr.smithi152.jkoscf (mgr.14182) 1091 : audit [DBG] from='client.15366 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:53.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:52 smithi152 bash[16344]: audit 2024-01-24T03:15:52.425868+0000 mon.smithi152 (mon.0) 929 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.hbbqmn"}]: dispatch 2024-01-24T03:15:53.249 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:15:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: cephadm 2024-01-24T03:15:52.425089+0000 mgr.smithi152.jkoscf (mgr.14182) 1092 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn 2024-01-24T03:15:53.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:15:53.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn 2024-01-24T03:15:53.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:53.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:15:53.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:53.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.hbbqmn ... 2024-01-24T03:15:53.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:53.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:15:53.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:15:53.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:15:53.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.hbbqmn ... 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:15:53.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: cephadm 2024-01-24T03:15:52.425317+0000 mgr.smithi152.jkoscf (mgr.14182) 1093 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: cephadm 2024-01-24T03:15:52.427170+0000 mgr.smithi152.jkoscf (mgr.14182) 1094 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.hbbqmn ... 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:15:53.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:15:53.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:53.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: cephadm 2024-01-24T03:15:52.429028+0000 mgr.smithi152.jkoscf (mgr.14182) 1095 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:15:53.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: cephadm 2024-01-24T03:15:52.430610+0000 mgr.smithi152.jkoscf (mgr.14182) 1096 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:15:53.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: cluster 2024-01-24T03:15:52.432113+0000 mgr.smithi152.jkoscf (mgr.14182) 1097 : cluster [DBG] pgmap v729: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:15:53.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: cluster 2024-01-24T03:15:52.717003+0000 mon.smithi152 (mon.0) 930 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:15:53.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:53 smithi195 bash[19846]: audit 2024-01-24T03:15:52.731341+0000 mon.smithi152 (mon.0) 931 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:15:54.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: cephadm 2024-01-24T03:15:52.425089+0000 mgr.smithi152.jkoscf (mgr.14182) 1092 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn 2024-01-24T03:15:54.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:15:54.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn 2024-01-24T03:15:54.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:54.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:15:54.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:54.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.hbbqmn ... 2024-01-24T03:15:54.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:54.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:15:54.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:15:54.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:15:54.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:54.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:15:54.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:15:54.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:15:54.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:15:54.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:15:54.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn 2024-01-24T03:15:54.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:15:54.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn 2024-01-24T03:15:54.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:54.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:15:54.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:54.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.hbbqmn ... 2024-01-24T03:15:54.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:54.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:15:54.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:15:54.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:15:54.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:54.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: cephadm 2024-01-24T03:15:52.425317+0000 mgr.smithi152.jkoscf (mgr.14182) 1093 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:54.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: cephadm 2024-01-24T03:15:52.427170+0000 mgr.smithi152.jkoscf (mgr.14182) 1094 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn 2024-01-24T03:15:54.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:15:54.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn 2024-01-24T03:15:54.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:54.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:15:54.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn 2024-01-24T03:15:54.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.hbbqmn ... 2024-01-24T03:15:54.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:54.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:15:54.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:15:54.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:15:54.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:15:54.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: cephadm 2024-01-24T03:15:52.429028+0000 mgr.smithi152.jkoscf (mgr.14182) 1095 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:15:54.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: cephadm 2024-01-24T03:15:52.430610+0000 mgr.smithi152.jkoscf (mgr.14182) 1096 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:15:54.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: cluster 2024-01-24T03:15:52.432113+0000 mgr.smithi152.jkoscf (mgr.14182) 1097 : cluster [DBG] pgmap v729: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:15:54.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: cluster 2024-01-24T03:15:52.717003+0000 mon.smithi152 (mon.0) 930 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:15:54.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:53 smithi152 bash[16344]: audit 2024-01-24T03:15:52.731341+0000 mon.smithi152 (mon.0) 931 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:15:56.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:55 smithi152 bash[16344]: cluster 2024-01-24T03:15:54.435110+0000 mgr.smithi152.jkoscf (mgr.14182) 1098 : cluster [DBG] pgmap v730: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:15:56.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:55 smithi195 bash[19846]: cluster 2024-01-24T03:15:54.435110+0000 mgr.smithi152.jkoscf (mgr.14182) 1098 : cluster [DBG] pgmap v730: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:15:56.628 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:15:56.628 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:15:57.298 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:15:58.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:57 smithi152 bash[16344]: cluster 2024-01-24T03:15:56.437472+0000 mgr.smithi152.jkoscf (mgr.14182) 1099 : cluster [DBG] pgmap v731: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:15:58.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:57 smithi152 bash[16344]: audit 2024-01-24T03:15:56.616388+0000 mgr.smithi152.jkoscf (mgr.14182) 1100 : audit [DBG] from='client.15370 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:58.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:57 smithi195 bash[19846]: cluster 2024-01-24T03:15:56.437472+0000 mgr.smithi152.jkoscf (mgr.14182) 1099 : cluster [DBG] pgmap v731: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:15:58.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:57 smithi195 bash[19846]: audit 2024-01-24T03:15:56.616388+0000 mgr.smithi152.jkoscf (mgr.14182) 1100 : audit [DBG] from='client.15370 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:15:58.298 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:16:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:15:59 smithi152 bash[16344]: cluster 2024-01-24T03:15:58.438726+0000 mgr.smithi152.jkoscf (mgr.14182) 1101 : cluster [DBG] pgmap v732: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 173 B/s rd, 0 op/s 2024-01-24T03:16:00.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:15:59 smithi195 bash[19846]: cluster 2024-01-24T03:15:58.438726+0000 mgr.smithi152.jkoscf (mgr.14182) 1101 : cluster [DBG] pgmap v732: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 173 B/s rd, 0 op/s 2024-01-24T03:16:01.564 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:16:01.564 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:16:02.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:01 smithi152 bash[16344]: cluster 2024-01-24T03:16:00.440557+0000 mgr.smithi152.jkoscf (mgr.14182) 1102 : cluster [DBG] pgmap v733: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:16:02.138 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:16:02.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:01 smithi195 bash[19846]: cluster 2024-01-24T03:16:00.440557+0000 mgr.smithi152.jkoscf (mgr.14182) 1102 : cluster [DBG] pgmap v733: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:16:03.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:02 smithi152 bash[16344]: audit 2024-01-24T03:16:01.546861+0000 mgr.smithi152.jkoscf (mgr.14182) 1103 : audit [DBG] from='client.15374 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:03.139 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:16:03.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:02 smithi195 bash[19846]: audit 2024-01-24T03:16:01.546861+0000 mgr.smithi152.jkoscf (mgr.14182) 1103 : audit [DBG] from='client.15374 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:04.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:03 smithi152 bash[16344]: cluster 2024-01-24T03:16:02.442108+0000 mgr.smithi152.jkoscf (mgr.14182) 1104 : cluster [DBG] pgmap v734: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:16:04.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:03 smithi195 bash[19846]: cluster 2024-01-24T03:16:02.442108+0000 mgr.smithi152.jkoscf (mgr.14182) 1104 : cluster [DBG] pgmap v734: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:16:06.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:05 smithi152 bash[16344]: cluster 2024-01-24T03:16:04.443700+0000 mgr.smithi152.jkoscf (mgr.14182) 1105 : cluster [DBG] pgmap v735: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:06.196 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:16:06.196 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:16:06.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:05 smithi195 bash[19846]: cluster 2024-01-24T03:16:04.443700+0000 mgr.smithi152.jkoscf (mgr.14182) 1105 : cluster [DBG] pgmap v735: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:06.822 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:16:07.823 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:16:08.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:07 smithi152 bash[16344]: audit 2024-01-24T03:16:06.179629+0000 mgr.smithi152.jkoscf (mgr.14182) 1106 : audit [DBG] from='client.15378 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:08.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:07 smithi152 bash[16344]: cluster 2024-01-24T03:16:06.445602+0000 mgr.smithi152.jkoscf (mgr.14182) 1107 : cluster [DBG] pgmap v736: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:08.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:07 smithi195 bash[19846]: audit 2024-01-24T03:16:06.179629+0000 mgr.smithi152.jkoscf (mgr.14182) 1106 : audit [DBG] from='client.15378 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:08.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:07 smithi195 bash[19846]: cluster 2024-01-24T03:16:06.445602+0000 mgr.smithi152.jkoscf (mgr.14182) 1107 : cluster [DBG] pgmap v736: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:10.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:09 smithi152 bash[16344]: cluster 2024-01-24T03:16:08.447030+0000 mgr.smithi152.jkoscf (mgr.14182) 1108 : cluster [DBG] pgmap v737: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:16:10.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:09 smithi195 bash[19846]: cluster 2024-01-24T03:16:08.447030+0000 mgr.smithi152.jkoscf (mgr.14182) 1108 : cluster [DBG] pgmap v737: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:16:11.022 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:16:11.022 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:16:11.558 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:16:11.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:11 smithi152 bash[16344]: cluster 2024-01-24T03:16:10.448071+0000 mgr.smithi152.jkoscf (mgr.14182) 1109 : cluster [DBG] pgmap v738: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:12.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:11 smithi195 bash[19846]: cluster 2024-01-24T03:16:10.448071+0000 mgr.smithi152.jkoscf (mgr.14182) 1109 : cluster [DBG] pgmap v738: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:12.559 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:16:12.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:12 smithi152 bash[16344]: audit 2024-01-24T03:16:11.005265+0000 mgr.smithi152.jkoscf (mgr.14182) 1110 : audit [DBG] from='client.15382 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:13.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:12 smithi195 bash[19846]: audit 2024-01-24T03:16:11.005265+0000 mgr.smithi152.jkoscf (mgr.14182) 1110 : audit [DBG] from='client.15382 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:14.040 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:13 smithi152 bash[16344]: cluster 2024-01-24T03:16:12.449495+0000 mgr.smithi152.jkoscf (mgr.14182) 1111 : cluster [DBG] pgmap v739: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:14.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:13 smithi195 bash[19846]: cluster 2024-01-24T03:16:12.449495+0000 mgr.smithi152.jkoscf (mgr.14182) 1111 : cluster [DBG] pgmap v739: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:15.853 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:16:15.854 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:16:16.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:15 smithi152 bash[16344]: cluster 2024-01-24T03:16:14.451097+0000 mgr.smithi152.jkoscf (mgr.14182) 1112 : cluster [DBG] pgmap v740: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:16.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:15 smithi195 bash[19846]: cluster 2024-01-24T03:16:14.451097+0000 mgr.smithi152.jkoscf (mgr.14182) 1112 : cluster [DBG] pgmap v740: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:16.399 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:16:17.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:16 smithi152 bash[16344]: audit 2024-01-24T03:16:15.844035+0000 mgr.smithi152.jkoscf (mgr.14182) 1113 : audit [DBG] from='client.15386 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:17.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:16 smithi195 bash[19846]: audit 2024-01-24T03:16:15.844035+0000 mgr.smithi152.jkoscf (mgr.14182) 1113 : audit [DBG] from='client.15386 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:17.400 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:16:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:17 smithi152 bash[16344]: cluster 2024-01-24T03:16:16.452895+0000 mgr.smithi152.jkoscf (mgr.14182) 1114 : cluster [DBG] pgmap v741: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:17 smithi195 bash[19846]: cluster 2024-01-24T03:16:16.452895+0000 mgr.smithi152.jkoscf (mgr.14182) 1114 : cluster [DBG] pgmap v741: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:20.179 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:19 smithi152 bash[16344]: cluster 2024-01-24T03:16:18.453966+0000 mgr.smithi152.jkoscf (mgr.14182) 1115 : cluster [DBG] pgmap v742: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:16:20.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:19 smithi195 bash[19846]: cluster 2024-01-24T03:16:18.453966+0000 mgr.smithi152.jkoscf (mgr.14182) 1115 : cluster [DBG] pgmap v742: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:16:20.620 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:16:20.620 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:16:21.226 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:16:22.227 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:16:22.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:21 smithi195 bash[19846]: cluster 2024-01-24T03:16:20.455734+0000 mgr.smithi152.jkoscf (mgr.14182) 1116 : cluster [DBG] pgmap v743: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:22.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:21 smithi195 bash[19846]: audit 2024-01-24T03:16:20.605462+0000 mgr.smithi152.jkoscf (mgr.14182) 1117 : audit [DBG] from='client.15390 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:22.243 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:21 smithi152 bash[16344]: cluster 2024-01-24T03:16:20.455734+0000 mgr.smithi152.jkoscf (mgr.14182) 1116 : cluster [DBG] pgmap v743: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:22.243 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:21 smithi152 bash[16344]: audit 2024-01-24T03:16:20.605462+0000 mgr.smithi152.jkoscf (mgr.14182) 1117 : audit [DBG] from='client.15390 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:24.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:23 smithi152 bash[16344]: cluster 2024-01-24T03:16:22.457153+0000 mgr.smithi152.jkoscf (mgr.14182) 1118 : cluster [DBG] pgmap v744: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:24.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:23 smithi195 bash[19846]: cluster 2024-01-24T03:16:22.457153+0000 mgr.smithi152.jkoscf (mgr.14182) 1118 : cluster [DBG] pgmap v744: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:25.682 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:16:25.683 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:16:26.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:25 smithi152 bash[16344]: cluster 2024-01-24T03:16:24.458819+0000 mgr.smithi152.jkoscf (mgr.14182) 1119 : cluster [DBG] pgmap v745: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:25 smithi195 bash[19846]: cluster 2024-01-24T03:16:24.458819+0000 mgr.smithi152.jkoscf (mgr.14182) 1119 : cluster [DBG] pgmap v745: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:26.361 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:16:27.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:26 smithi195 bash[19846]: audit 2024-01-24T03:16:25.666011+0000 mgr.smithi152.jkoscf (mgr.14182) 1120 : audit [DBG] from='client.15394 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:27.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:26 smithi152 bash[16344]: audit 2024-01-24T03:16:25.666011+0000 mgr.smithi152.jkoscf (mgr.14182) 1120 : audit [DBG] from='client.15394 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:27.362 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:16:28.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:27 smithi195 bash[19846]: cluster 2024-01-24T03:16:26.460649+0000 mgr.smithi152.jkoscf (mgr.14182) 1121 : cluster [DBG] pgmap v746: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:28.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:27 smithi152 bash[16344]: cluster 2024-01-24T03:16:26.460649+0000 mgr.smithi152.jkoscf (mgr.14182) 1121 : cluster [DBG] pgmap v746: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:30.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:29 smithi195 bash[19846]: cluster 2024-01-24T03:16:28.462015+0000 mgr.smithi152.jkoscf (mgr.14182) 1122 : cluster [DBG] pgmap v747: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:16:30.198 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:29 smithi152 bash[16344]: cluster 2024-01-24T03:16:28.462015+0000 mgr.smithi152.jkoscf (mgr.14182) 1122 : cluster [DBG] pgmap v747: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:16:30.561 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:16:30.561 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:16:31.205 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:16:32.206 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:16:32.218 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:31 smithi152 bash[16344]: cluster 2024-01-24T03:16:30.463044+0000 mgr.smithi152.jkoscf (mgr.14182) 1123 : cluster [DBG] pgmap v748: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:32.218 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:31 smithi152 bash[16344]: audit 2024-01-24T03:16:30.546106+0000 mgr.smithi152.jkoscf (mgr.14182) 1124 : audit [DBG] from='client.15398 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:32.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:31 smithi195 bash[19846]: cluster 2024-01-24T03:16:30.463044+0000 mgr.smithi152.jkoscf (mgr.14182) 1123 : cluster [DBG] pgmap v748: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:32.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:31 smithi195 bash[19846]: audit 2024-01-24T03:16:30.546106+0000 mgr.smithi152.jkoscf (mgr.14182) 1124 : audit [DBG] from='client.15398 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:34.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:33 smithi195 bash[19846]: cluster 2024-01-24T03:16:32.464962+0000 mgr.smithi152.jkoscf (mgr.14182) 1125 : cluster [DBG] pgmap v749: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:34.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:33 smithi152 bash[16344]: cluster 2024-01-24T03:16:32.464962+0000 mgr.smithi152.jkoscf (mgr.14182) 1125 : cluster [DBG] pgmap v749: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:35.413 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:16:35.413 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:16:36.068 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:16:36.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:35 smithi195 bash[19846]: cluster 2024-01-24T03:16:34.466788+0000 mgr.smithi152.jkoscf (mgr.14182) 1126 : cluster [DBG] pgmap v750: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:36.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:35 smithi152 bash[16344]: cluster 2024-01-24T03:16:34.466788+0000 mgr.smithi152.jkoscf (mgr.14182) 1126 : cluster [DBG] pgmap v750: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:37.069 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:16:37.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:36 smithi195 bash[19846]: audit 2024-01-24T03:16:35.395448+0000 mgr.smithi152.jkoscf (mgr.14182) 1127 : audit [DBG] from='client.15402 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:37.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:36 smithi195 bash[19846]: cluster 2024-01-24T03:16:36.468141+0000 mgr.smithi152.jkoscf (mgr.14182) 1128 : cluster [DBG] pgmap v751: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:37.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:36 smithi152 bash[16344]: audit 2024-01-24T03:16:35.395448+0000 mgr.smithi152.jkoscf (mgr.14182) 1127 : audit [DBG] from='client.15402 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:37.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:36 smithi152 bash[16344]: cluster 2024-01-24T03:16:36.468141+0000 mgr.smithi152.jkoscf (mgr.14182) 1128 : cluster [DBG] pgmap v751: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:39.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:39 smithi152 bash[16344]: cluster 2024-01-24T03:16:38.469219+0000 mgr.smithi152.jkoscf (mgr.14182) 1129 : cluster [DBG] pgmap v752: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:16:39.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:39 smithi195 bash[19846]: cluster 2024-01-24T03:16:38.469219+0000 mgr.smithi152.jkoscf (mgr.14182) 1129 : cluster [DBG] pgmap v752: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:16:40.214 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:16:40.214 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:16:40.827 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:16:41.828 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:16:41.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:41 smithi152 bash[16344]: audit 2024-01-24T03:16:40.200682+0000 mgr.smithi152.jkoscf (mgr.14182) 1130 : audit [DBG] from='client.15406 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:41.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:41 smithi152 bash[16344]: cluster 2024-01-24T03:16:40.471424+0000 mgr.smithi152.jkoscf (mgr.14182) 1131 : cluster [DBG] pgmap v753: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:41.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:41 smithi195 bash[19846]: audit 2024-01-24T03:16:40.200682+0000 mgr.smithi152.jkoscf (mgr.14182) 1130 : audit [DBG] from='client.15406 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:41.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:41 smithi195 bash[19846]: cluster 2024-01-24T03:16:40.471424+0000 mgr.smithi152.jkoscf (mgr.14182) 1131 : cluster [DBG] pgmap v753: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:43.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:43 smithi152 bash[16344]: cluster 2024-01-24T03:16:42.473082+0000 mgr.smithi152.jkoscf (mgr.14182) 1132 : cluster [DBG] pgmap v754: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:43.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:43 smithi195 bash[19846]: cluster 2024-01-24T03:16:42.473082+0000 mgr.smithi152.jkoscf (mgr.14182) 1132 : cluster [DBG] pgmap v754: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:44.998 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:16:44.998 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:16:45.583 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:16:45.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:45 smithi152 bash[16344]: cluster 2024-01-24T03:16:44.474702+0000 mgr.smithi152.jkoscf (mgr.14182) 1133 : cluster [DBG] pgmap v755: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:45.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:45 smithi195 bash[19846]: cluster 2024-01-24T03:16:44.474702+0000 mgr.smithi152.jkoscf (mgr.14182) 1133 : cluster [DBG] pgmap v755: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:46.585 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:16:46.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:46 smithi152 bash[16344]: audit 2024-01-24T03:16:44.981052+0000 mgr.smithi152.jkoscf (mgr.14182) 1134 : audit [DBG] from='client.15410 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:46.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:46 smithi195 bash[19846]: audit 2024-01-24T03:16:44.981052+0000 mgr.smithi152.jkoscf (mgr.14182) 1134 : audit [DBG] from='client.15410 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:47.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:47 smithi195 bash[19846]: cluster 2024-01-24T03:16:46.475966+0000 mgr.smithi152.jkoscf (mgr.14182) 1135 : cluster [DBG] pgmap v756: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:47.991 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:47 smithi152 bash[16344]: cluster 2024-01-24T03:16:46.475966+0000 mgr.smithi152.jkoscf (mgr.14182) 1135 : cluster [DBG] pgmap v756: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:49.764 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:16:49.764 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:16:49.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:49 smithi195 bash[19846]: cluster 2024-01-24T03:16:48.476770+0000 mgr.smithi152.jkoscf (mgr.14182) 1136 : cluster [DBG] pgmap v757: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:16:50.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:49 smithi152 bash[16344]: cluster 2024-01-24T03:16:48.476770+0000 mgr.smithi152.jkoscf (mgr.14182) 1136 : cluster [DBG] pgmap v757: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:16:50.344 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:16:50.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:50 smithi195 bash[19846]: audit 2024-01-24T03:16:49.747957+0000 mgr.smithi152.jkoscf (mgr.14182) 1137 : audit [DBG] from='client.15414 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:51.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:50 smithi152 bash[16344]: audit 2024-01-24T03:16:49.747957+0000 mgr.smithi152.jkoscf (mgr.14182) 1137 : audit [DBG] from='client.15414 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:51.346 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:16:51.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:51 smithi152 bash[16344]: cluster 2024-01-24T03:16:50.478567+0000 mgr.smithi152.jkoscf (mgr.14182) 1138 : cluster [DBG] pgmap v758: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:51.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:51 smithi195 bash[19846]: cluster 2024-01-24T03:16:50.478567+0000 mgr.smithi152.jkoscf (mgr.14182) 1138 : cluster [DBG] pgmap v758: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:52.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:52 smithi195 bash[19846]: audit 2024-01-24T03:16:52.433864+0000 mon.smithi152 (mon.0) 932 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:16:53.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:52 smithi152 bash[16344]: audit 2024-01-24T03:16:52.433864+0000 mon.smithi152 (mon.0) 932 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:16:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:53 smithi195 bash[19846]: cluster 2024-01-24T03:16:52.480052+0000 mgr.smithi152.jkoscf (mgr.14182) 1139 : cluster [DBG] pgmap v759: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:53 smithi195 bash[19846]: audit 2024-01-24T03:16:52.740875+0000 mon.smithi152 (mon.0) 933 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:16:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:53 smithi195 bash[19846]: audit 2024-01-24T03:16:52.742159+0000 mon.smithi152 (mon.0) 934 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:16:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:53 smithi195 bash[19846]: audit 2024-01-24T03:16:52.748991+0000 mon.smithi152 (mon.0) 935 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:16:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:53 smithi195 bash[19846]: cluster 2024-01-24T03:16:52.749959+0000 mgr.smithi152.jkoscf (mgr.14182) 1140 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:16:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:53 smithi195 bash[19846]: audit 2024-01-24T03:16:52.756011+0000 mon.smithi152 (mon.0) 936 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:16:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:53 smithi195 bash[19846]: audit 2024-01-24T03:16:52.770797+0000 mon.smithi152 (mon.0) 937 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:16:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:53 smithi195 bash[19846]: cephadm 2024-01-24T03:16:52.775081+0000 mgr.smithi152.jkoscf (mgr.14182) 1141 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.vqaunx on smithi195 2024-01-24T03:16:54.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:53 smithi152 bash[16344]: cluster 2024-01-24T03:16:52.480052+0000 mgr.smithi152.jkoscf (mgr.14182) 1139 : cluster [DBG] pgmap v759: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:16:54.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:53 smithi152 bash[16344]: audit 2024-01-24T03:16:52.740875+0000 mon.smithi152 (mon.0) 933 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:16:54.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:53 smithi152 bash[16344]: audit 2024-01-24T03:16:52.742159+0000 mon.smithi152 (mon.0) 934 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:16:54.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:53 smithi152 bash[16344]: audit 2024-01-24T03:16:52.748991+0000 mon.smithi152 (mon.0) 935 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:16:54.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:53 smithi152 bash[16344]: cluster 2024-01-24T03:16:52.749959+0000 mgr.smithi152.jkoscf (mgr.14182) 1140 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:16:54.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:53 smithi152 bash[16344]: audit 2024-01-24T03:16:52.756011+0000 mon.smithi152 (mon.0) 936 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:16:54.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:53 smithi152 bash[16344]: audit 2024-01-24T03:16:52.770797+0000 mon.smithi152 (mon.0) 937 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:16:54.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:53 smithi152 bash[16344]: cephadm 2024-01-24T03:16:52.775081+0000 mgr.smithi152.jkoscf (mgr.14182) 1141 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.vqaunx on smithi195 2024-01-24T03:16:54.697 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:16:54.697 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:14:44.306236Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.njfbcf on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:16:54.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:54 smithi195 bash[19846]: cluster 2024-01-24T03:16:53.746603+0000 mon.smithi152 (mon.0) 938 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:16:54.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:54 smithi195 bash[19846]: cluster 2024-01-24T03:16:53.746664+0000 mon.smithi152 (mon.0) 939 : cluster [INF] Cluster is now healthy 2024-01-24T03:16:54.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:54 smithi195 bash[19846]: audit 2024-01-24T03:16:54.298879+0000 mon.smithi152 (mon.0) 940 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:16:55.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:54 smithi152 bash[16344]: cluster 2024-01-24T03:16:53.746603+0000 mon.smithi152 (mon.0) 938 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:16:55.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:54 smithi152 bash[16344]: cluster 2024-01-24T03:16:53.746664+0000 mon.smithi152 (mon.0) 939 : cluster [INF] Cluster is now healthy 2024-01-24T03:16:55.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:54 smithi152 bash[16344]: audit 2024-01-24T03:16:54.298879+0000 mon.smithi152 (mon.0) 940 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:16:55.301 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:16:55.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:55 smithi195 bash[19846]: audit 2024-01-24T03:16:54.682713+0000 mgr.smithi152.jkoscf (mgr.14182) 1142 : audit [DBG] from='client.15418 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:55.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:55 smithi195 bash[19846]: cluster 2024-01-24T03:16:54.751285+0000 mgr.smithi152.jkoscf (mgr.14182) 1143 : cluster [DBG] pgmap v761: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:16:56.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:55 smithi152 bash[16344]: audit 2024-01-24T03:16:54.682713+0000 mgr.smithi152.jkoscf (mgr.14182) 1142 : audit [DBG] from='client.15418 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:16:56.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:55 smithi152 bash[16344]: cluster 2024-01-24T03:16:54.751285+0000 mgr.smithi152.jkoscf (mgr.14182) 1143 : cluster [DBG] pgmap v761: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:16:56.302 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:16:56.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:56 smithi152 bash[16344]: audit 2024-01-24T03:16:56.579716+0000 mon.smithi152 (mon.0) 941 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.vqaunx"}]: dispatch 2024-01-24T03:16:56.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:56 smithi195 bash[19846]: audit 2024-01-24T03:16:56.579716+0000 mon.smithi152 (mon.0) 941 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.vqaunx"}]: dispatch 2024-01-24T03:16:57.821 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: cephadm 2024-01-24T03:16:56.578534+0000 mgr.smithi152.jkoscf (mgr.14182) 1144 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx 2024-01-24T03:16:57.821 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:16:57.821 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx 2024-01-24T03:16:57.821 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.821 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:16:57.821 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.821 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.vqaunx ... 2024-01-24T03:16:57.821 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:16:57.822 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:16:57.822 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:16:57.822 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:16:57.822 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:16:57.822 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:16:57.822 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:16:57.822 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:16:57.822 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:16:57.822 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:16:57.822 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx 2024-01-24T03:16:57.822 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:16:57.822 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx 2024-01-24T03:16:57.823 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.823 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:16:57.823 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.823 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.vqaunx ... 2024-01-24T03:16:57.823 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:16:57.823 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:16:57.823 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:16:57.824 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:16:57.824 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:16:57.824 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: cephadm 2024-01-24T03:16:56.579114+0000 mgr.smithi152.jkoscf (mgr.14182) 1145 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.824 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: cephadm 2024-01-24T03:16:56.581264+0000 mgr.smithi152.jkoscf (mgr.14182) 1146 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx 2024-01-24T03:16:57.824 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:16:57.824 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx 2024-01-24T03:16:57.824 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.824 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:16:57.824 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.825 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.vqaunx ... 2024-01-24T03:16:57.825 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:16:57.825 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:16:57.825 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:16:57.825 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:16:57.825 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:16:57.825 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: cephadm 2024-01-24T03:16:56.585485+0000 mgr.smithi152.jkoscf (mgr.14182) 1147 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.gcfryo on smithi152 2024-01-24T03:16:57.825 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:57 smithi152 bash[16344]: cluster 2024-01-24T03:16:56.752070+0000 mgr.smithi152.jkoscf (mgr.14182) 1148 : cluster [DBG] pgmap v762: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2024-01-24T03:16:57.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: cephadm 2024-01-24T03:16:56.578534+0000 mgr.smithi152.jkoscf (mgr.14182) 1144 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx 2024-01-24T03:16:57.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:16:57.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx 2024-01-24T03:16:57.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:16:57.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.vqaunx ... 2024-01-24T03:16:57.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:16:57.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:16:57.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:16:57.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:16:57.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:16:57.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:16:57.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:16:57.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:16:57.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:16:57.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:16:57.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx 2024-01-24T03:16:57.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:16:57.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx 2024-01-24T03:16:57.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:16:57.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.vqaunx ... 2024-01-24T03:16:57.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:16:57.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:16:57.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:16:57.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:16:57.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:16:57.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: cephadm 2024-01-24T03:16:56.579114+0000 mgr.smithi152.jkoscf (mgr.14182) 1145 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: cephadm 2024-01-24T03:16:56.581264+0000 mgr.smithi152.jkoscf (mgr.14182) 1146 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx 2024-01-24T03:16:57.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:16:57.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx 2024-01-24T03:16:57.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:16:57.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx 2024-01-24T03:16:57.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.vqaunx ... 2024-01-24T03:16:57.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:16:57.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:16:57.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:16:57.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:16:57.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:16:57.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: cephadm 2024-01-24T03:16:56.585485+0000 mgr.smithi152.jkoscf (mgr.14182) 1147 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.gcfryo on smithi152 2024-01-24T03:16:57.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:57 smithi195 bash[19846]: cluster 2024-01-24T03:16:56.752070+0000 mgr.smithi152.jkoscf (mgr.14182) 1148 : cluster [DBG] pgmap v762: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2024-01-24T03:16:59.644 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:16:59.644 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:48.446489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.tljfxr on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-tljfxr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.tljfxr\nDeploy daemon haproxy.nfs.foo.smithi195.tljfxr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.427032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.hbbqmn on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-hbbqmn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.hbbqmn\nDeploy daemon haproxy.nfs.foo.smithi152.hbbqmn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:15:52.428928Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.bpxnzv on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:16:59.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:16:59 smithi152 bash[16344]: cluster 2024-01-24T03:16:58.753226+0000 mgr.smithi152.jkoscf (mgr.14182) 1149 : cluster [DBG] pgmap v763: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:16:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:16:59 smithi195 bash[19846]: cluster 2024-01-24T03:16:58.753226+0000 mgr.smithi152.jkoscf (mgr.14182) 1149 : cluster [DBG] pgmap v763: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:17:00.376 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:17:00.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:00 smithi152 bash[16344]: audit 2024-01-24T03:16:59.633033+0000 mgr.smithi152.jkoscf (mgr.14182) 1150 : audit [DBG] from='client.15422 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:00.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:00 smithi152 bash[16344]: audit 2024-01-24T03:17:00.515088+0000 mon.smithi152 (mon.0) 942 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.gcfryo"}]: dispatch 2024-01-24T03:17:00.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:00 smithi195 bash[19846]: audit 2024-01-24T03:16:59.633033+0000 mgr.smithi152.jkoscf (mgr.14182) 1150 : audit [DBG] from='client.15422 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:00.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:00 smithi195 bash[19846]: audit 2024-01-24T03:17:00.515088+0000 mon.smithi152 (mon.0) 942 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.gcfryo"}]: dispatch 2024-01-24T03:17:01.377 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:17:01.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: cephadm 2024-01-24T03:17:00.513835+0000 mgr.smithi152.jkoscf (mgr.14182) 1151 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo 2024-01-24T03:17:01.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:17:01.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo 2024-01-24T03:17:01.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:17:01.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.gcfryo ... 2024-01-24T03:17:01.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:17:01.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:17:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:17:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:17:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:17:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:17:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:17:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:17:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:17:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:17:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo 2024-01-24T03:17:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:17:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo 2024-01-24T03:17:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.gcfryo ... 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: cephadm 2024-01-24T03:17:00.514447+0000 mgr.smithi152.jkoscf (mgr.14182) 1152 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: cephadm 2024-01-24T03:17:00.516628+0000 mgr.smithi152.jkoscf (mgr.14182) 1153 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:17:01.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.gcfryo ... 2024-01-24T03:17:01.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:17:01.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:17:01.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:17:01.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:17:01.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:17:01.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: cephadm 2024-01-24T03:17:00.521177+0000 mgr.smithi152.jkoscf (mgr.14182) 1154 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:17:01.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: cephadm 2024-01-24T03:17:00.524379+0000 mgr.smithi152.jkoscf (mgr.14182) 1155 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:17:01.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: cluster 2024-01-24T03:17:00.526379+0000 mgr.smithi152.jkoscf (mgr.14182) 1156 : cluster [DBG] pgmap v764: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:17:01.837 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:01 smithi152 bash[16344]: cluster 2024-01-24T03:17:00.560319+0000 mon.smithi152 (mon.0) 943 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: cephadm 2024-01-24T03:17:00.513835+0000 mgr.smithi152.jkoscf (mgr.14182) 1151 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.gcfryo ... 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:17:01.861 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:17:01.862 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:17:01.862 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:17:01.862 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:17:01.862 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo 2024-01-24T03:17:01.862 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:17:01.862 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo 2024-01-24T03:17:01.862 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.862 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:17:01.862 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.862 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.gcfryo ... 2024-01-24T03:17:01.862 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:17:01.862 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: cephadm 2024-01-24T03:17:00.514447+0000 mgr.smithi152.jkoscf (mgr.14182) 1152 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: cephadm 2024-01-24T03:17:00.516628+0000 mgr.smithi152.jkoscf (mgr.14182) 1153 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.gcfryo ... 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:17:01.863 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:17:01.864 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:17:01.864 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: cephadm 2024-01-24T03:17:00.521177+0000 mgr.smithi152.jkoscf (mgr.14182) 1154 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:17:01.864 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: cephadm 2024-01-24T03:17:00.524379+0000 mgr.smithi152.jkoscf (mgr.14182) 1155 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:17:01.864 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: cluster 2024-01-24T03:17:00.526379+0000 mgr.smithi152.jkoscf (mgr.14182) 1156 : cluster [DBG] pgmap v764: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:17:01.864 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:01 smithi195 bash[19846]: cluster 2024-01-24T03:17:00.560319+0000 mon.smithi152 (mon.0) 943 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:17:04.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:03 smithi152 bash[16344]: cluster 2024-01-24T03:17:02.527871+0000 mgr.smithi152.jkoscf (mgr.14182) 1157 : cluster [DBG] pgmap v765: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:17:04.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:03 smithi152 bash[16344]: audit 2024-01-24T03:17:02.790482+0000 mon.smithi152 (mon.0) 944 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:17:04.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:03 smithi195 bash[19846]: cluster 2024-01-24T03:17:02.527871+0000 mgr.smithi152.jkoscf (mgr.14182) 1157 : cluster [DBG] pgmap v765: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:17:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:03 smithi195 bash[19846]: audit 2024-01-24T03:17:02.790482+0000 mon.smithi152 (mon.0) 944 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:17:04.821 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:17:04.821 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:17:05.412 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:17:06.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:05 smithi152 bash[16344]: cluster 2024-01-24T03:17:04.529189+0000 mgr.smithi152.jkoscf (mgr.14182) 1158 : cluster [DBG] pgmap v766: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:17:06.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:05 smithi152 bash[16344]: audit 2024-01-24T03:17:04.807621+0000 mgr.smithi152.jkoscf (mgr.14182) 1159 : audit [DBG] from='client.15426 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:06.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:05 smithi195 bash[19846]: cluster 2024-01-24T03:17:04.529189+0000 mgr.smithi152.jkoscf (mgr.14182) 1158 : cluster [DBG] pgmap v766: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:17:06.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:05 smithi195 bash[19846]: audit 2024-01-24T03:17:04.807621+0000 mgr.smithi152.jkoscf (mgr.14182) 1159 : audit [DBG] from='client.15426 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:06.413 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:17:08.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:07 smithi152 bash[16344]: cluster 2024-01-24T03:17:06.530878+0000 mgr.smithi152.jkoscf (mgr.14182) 1160 : cluster [DBG] pgmap v767: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:17:08.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:07 smithi195 bash[19846]: cluster 2024-01-24T03:17:06.530878+0000 mgr.smithi152.jkoscf (mgr.14182) 1160 : cluster [DBG] pgmap v767: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:17:09.591 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:17:09.591 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:17:10.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:09 smithi152 bash[16344]: cluster 2024-01-24T03:17:08.532213+0000 mgr.smithi152.jkoscf (mgr.14182) 1161 : cluster [DBG] pgmap v768: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:17:10.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:09 smithi152 bash[16344]: audit 2024-01-24T03:17:09.297110+0000 mon.smithi152 (mon.0) 945 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:17:10.133 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:17:10.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:09 smithi195 bash[19846]: cluster 2024-01-24T03:17:08.532213+0000 mgr.smithi152.jkoscf (mgr.14182) 1161 : cluster [DBG] pgmap v768: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:17:10.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:09 smithi195 bash[19846]: audit 2024-01-24T03:17:09.297110+0000 mon.smithi152 (mon.0) 945 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:17:11.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:10 smithi152 bash[16344]: audit 2024-01-24T03:17:09.577856+0000 mgr.smithi152.jkoscf (mgr.14182) 1162 : audit [DBG] from='client.15430 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:11.135 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:17:11.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:10 smithi195 bash[19846]: audit 2024-01-24T03:17:09.577856+0000 mgr.smithi152.jkoscf (mgr.14182) 1162 : audit [DBG] from='client.15430 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:12.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:11 smithi152 bash[16344]: cluster 2024-01-24T03:17:10.534012+0000 mgr.smithi152.jkoscf (mgr.14182) 1163 : cluster [DBG] pgmap v769: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:17:12.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:11 smithi195 bash[19846]: cluster 2024-01-24T03:17:10.534012+0000 mgr.smithi152.jkoscf (mgr.14182) 1163 : cluster [DBG] pgmap v769: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:17:14.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:13 smithi152 bash[16344]: cluster 2024-01-24T03:17:12.535884+0000 mgr.smithi152.jkoscf (mgr.14182) 1164 : cluster [DBG] pgmap v770: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:14.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:13 smithi195 bash[19846]: cluster 2024-01-24T03:17:12.535884+0000 mgr.smithi152.jkoscf (mgr.14182) 1164 : cluster [DBG] pgmap v770: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:14.443 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:17:14.444 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:17:15.133 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:17:16.134 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:17:16.147 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:15 smithi152 bash[16344]: audit 2024-01-24T03:17:14.430637+0000 mgr.smithi152.jkoscf (mgr.14182) 1165 : audit [DBG] from='client.15434 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:16.147 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:15 smithi152 bash[16344]: cluster 2024-01-24T03:17:14.537498+0000 mgr.smithi152.jkoscf (mgr.14182) 1166 : cluster [DBG] pgmap v771: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:16.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:15 smithi195 bash[19846]: audit 2024-01-24T03:17:14.430637+0000 mgr.smithi152.jkoscf (mgr.14182) 1165 : audit [DBG] from='client.15434 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:16.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:15 smithi195 bash[19846]: cluster 2024-01-24T03:17:14.537498+0000 mgr.smithi152.jkoscf (mgr.14182) 1166 : cluster [DBG] pgmap v771: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:17 smithi152 bash[16344]: cluster 2024-01-24T03:17:16.539239+0000 mgr.smithi152.jkoscf (mgr.14182) 1167 : cluster [DBG] pgmap v772: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:18.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:17 smithi195 bash[19846]: cluster 2024-01-24T03:17:16.539239+0000 mgr.smithi152.jkoscf (mgr.14182) 1167 : cluster [DBG] pgmap v772: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:19.513 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:17:19.514 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:17:20.137 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:19 smithi152 bash[16344]: cluster 2024-01-24T03:17:18.540499+0000 mgr.smithi152.jkoscf (mgr.14182) 1168 : cluster [DBG] pgmap v773: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:17:20.138 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:17:20.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:19 smithi195 bash[19846]: cluster 2024-01-24T03:17:18.540499+0000 mgr.smithi152.jkoscf (mgr.14182) 1168 : cluster [DBG] pgmap v773: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:17:21.139 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:17:21.151 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:20 smithi152 bash[16344]: audit 2024-01-24T03:17:19.500025+0000 mgr.smithi152.jkoscf (mgr.14182) 1169 : audit [DBG] from='client.15438 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:21.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:20 smithi195 bash[19846]: audit 2024-01-24T03:17:19.500025+0000 mgr.smithi152.jkoscf (mgr.14182) 1169 : audit [DBG] from='client.15438 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:22.207 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:21 smithi152 bash[16344]: cluster 2024-01-24T03:17:20.542315+0000 mgr.smithi152.jkoscf (mgr.14182) 1170 : cluster [DBG] pgmap v774: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:22.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:21 smithi195 bash[19846]: cluster 2024-01-24T03:17:20.542315+0000 mgr.smithi152.jkoscf (mgr.14182) 1170 : cluster [DBG] pgmap v774: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:24.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:23 smithi195 bash[19846]: cluster 2024-01-24T03:17:22.544016+0000 mgr.smithi152.jkoscf (mgr.14182) 1171 : cluster [DBG] pgmap v775: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:24.285 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:17:24.285 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:17:24.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:23 smithi152 bash[16344]: cluster 2024-01-24T03:17:22.544016+0000 mgr.smithi152.jkoscf (mgr.14182) 1171 : cluster [DBG] pgmap v775: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:24.911 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:17:25.912 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:17:26.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:25 smithi195 bash[19846]: audit 2024-01-24T03:17:24.273650+0000 mgr.smithi152.jkoscf (mgr.14182) 1172 : audit [DBG] from='client.15442 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:25 smithi195 bash[19846]: cluster 2024-01-24T03:17:24.545617+0000 mgr.smithi152.jkoscf (mgr.14182) 1173 : cluster [DBG] pgmap v776: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:26.340 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:25 smithi152 bash[16344]: audit 2024-01-24T03:17:24.273650+0000 mgr.smithi152.jkoscf (mgr.14182) 1172 : audit [DBG] from='client.15442 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:26.340 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:25 smithi152 bash[16344]: cluster 2024-01-24T03:17:24.545617+0000 mgr.smithi152.jkoscf (mgr.14182) 1173 : cluster [DBG] pgmap v776: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:28.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:27 smithi195 bash[19846]: cluster 2024-01-24T03:17:26.547414+0000 mgr.smithi152.jkoscf (mgr.14182) 1174 : cluster [DBG] pgmap v777: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:28.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:27 smithi152 bash[16344]: cluster 2024-01-24T03:17:26.547414+0000 mgr.smithi152.jkoscf (mgr.14182) 1174 : cluster [DBG] pgmap v777: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:29.029 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:17:29.029 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:17:29.602 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:17:30.195 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:29 smithi195 bash[19846]: cluster 2024-01-24T03:17:28.548750+0000 mgr.smithi152.jkoscf (mgr.14182) 1175 : cluster [DBG] pgmap v778: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:17:30.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:29 smithi152 bash[16344]: cluster 2024-01-24T03:17:28.548750+0000 mgr.smithi152.jkoscf (mgr.14182) 1175 : cluster [DBG] pgmap v778: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:17:30.603 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:17:31.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:30 smithi195 bash[19846]: audit 2024-01-24T03:17:29.020307+0000 mgr.smithi152.jkoscf (mgr.14182) 1176 : audit [DBG] from='client.15446 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:31.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:30 smithi152 bash[16344]: audit 2024-01-24T03:17:29.020307+0000 mgr.smithi152.jkoscf (mgr.14182) 1176 : audit [DBG] from='client.15446 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:31.965 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:31 smithi152 bash[16344]: cluster 2024-01-24T03:17:30.550697+0000 mgr.smithi152.jkoscf (mgr.14182) 1177 : cluster [DBG] pgmap v779: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:32.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:31 smithi195 bash[19846]: cluster 2024-01-24T03:17:30.550697+0000 mgr.smithi152.jkoscf (mgr.14182) 1177 : cluster [DBG] pgmap v779: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:33.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:32 smithi195 bash[19846]: cluster 2024-01-24T03:17:32.552521+0000 mgr.smithi152.jkoscf (mgr.14182) 1178 : cluster [DBG] pgmap v780: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:33.250 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:32 smithi152 bash[16344]: cluster 2024-01-24T03:17:32.552521+0000 mgr.smithi152.jkoscf (mgr.14182) 1178 : cluster [DBG] pgmap v780: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:33.683 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:17:33.683 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:17:34.372 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:17:34.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:34 smithi152 bash[16344]: audit 2024-01-24T03:17:33.666746+0000 mgr.smithi152.jkoscf (mgr.14182) 1179 : audit [DBG] from='client.15450 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:34.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:34 smithi195 bash[19846]: audit 2024-01-24T03:17:33.666746+0000 mgr.smithi152.jkoscf (mgr.14182) 1179 : audit [DBG] from='client.15450 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:35.373 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:17:35.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:35 smithi152 bash[16344]: cluster 2024-01-24T03:17:34.554085+0000 mgr.smithi152.jkoscf (mgr.14182) 1180 : cluster [DBG] pgmap v781: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:35.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:35 smithi195 bash[19846]: cluster 2024-01-24T03:17:34.554085+0000 mgr.smithi152.jkoscf (mgr.14182) 1180 : cluster [DBG] pgmap v781: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:37.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:37 smithi195 bash[19846]: cluster 2024-01-24T03:17:36.555519+0000 mgr.smithi152.jkoscf (mgr.14182) 1181 : cluster [DBG] pgmap v782: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:38.041 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:37 smithi152 bash[16344]: cluster 2024-01-24T03:17:36.555519+0000 mgr.smithi152.jkoscf (mgr.14182) 1181 : cluster [DBG] pgmap v782: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:38.479 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:17:38.479 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:17:39.147 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:17:39.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:39 smithi195 bash[19846]: audit 2024-01-24T03:17:38.463873+0000 mgr.smithi152.jkoscf (mgr.14182) 1182 : audit [DBG] from='client.15454 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:39.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:39 smithi195 bash[19846]: cluster 2024-01-24T03:17:38.556551+0000 mgr.smithi152.jkoscf (mgr.14182) 1183 : cluster [DBG] pgmap v783: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:17:40.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:39 smithi152 bash[16344]: audit 2024-01-24T03:17:38.463873+0000 mgr.smithi152.jkoscf (mgr.14182) 1182 : audit [DBG] from='client.15454 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:40.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:39 smithi152 bash[16344]: cluster 2024-01-24T03:17:38.556551+0000 mgr.smithi152.jkoscf (mgr.14182) 1183 : cluster [DBG] pgmap v783: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:17:40.148 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:17:41.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:41 smithi152 bash[16344]: cluster 2024-01-24T03:17:40.558355+0000 mgr.smithi152.jkoscf (mgr.14182) 1184 : cluster [DBG] pgmap v784: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:41.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:41 smithi195 bash[19846]: cluster 2024-01-24T03:17:40.558355+0000 mgr.smithi152.jkoscf (mgr.14182) 1184 : cluster [DBG] pgmap v784: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:43.330 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:17:43.330 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:17:43.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:43 smithi152 bash[16344]: cluster 2024-01-24T03:17:42.560121+0000 mgr.smithi152.jkoscf (mgr.14182) 1185 : cluster [DBG] pgmap v785: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:43.945 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:17:43.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:43 smithi195 bash[19846]: cluster 2024-01-24T03:17:42.560121+0000 mgr.smithi152.jkoscf (mgr.14182) 1185 : cluster [DBG] pgmap v785: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:44.946 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:17:44.957 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:44 smithi152 bash[16344]: audit 2024-01-24T03:17:43.316656+0000 mgr.smithi152.jkoscf (mgr.14182) 1186 : audit [DBG] from='client.15458 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:44.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:44 smithi195 bash[19846]: audit 2024-01-24T03:17:43.316656+0000 mgr.smithi152.jkoscf (mgr.14182) 1186 : audit [DBG] from='client.15458 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:45.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:45 smithi152 bash[16344]: cluster 2024-01-24T03:17:44.561685+0000 mgr.smithi152.jkoscf (mgr.14182) 1187 : cluster [DBG] pgmap v786: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:45.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:45 smithi195 bash[19846]: cluster 2024-01-24T03:17:44.561685+0000 mgr.smithi152.jkoscf (mgr.14182) 1187 : cluster [DBG] pgmap v786: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:47.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:47 smithi195 bash[19846]: cluster 2024-01-24T03:17:46.563519+0000 mgr.smithi152.jkoscf (mgr.14182) 1188 : cluster [DBG] pgmap v787: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:48.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:47 smithi152 bash[16344]: cluster 2024-01-24T03:17:46.563519+0000 mgr.smithi152.jkoscf (mgr.14182) 1188 : cluster [DBG] pgmap v787: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:48.120 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:17:48.120 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:17:48.748 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:17:49.749 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:17:49.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:49 smithi195 bash[19846]: audit 2024-01-24T03:17:48.103572+0000 mgr.smithi152.jkoscf (mgr.14182) 1189 : audit [DBG] from='client.15462 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:49.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:49 smithi195 bash[19846]: cluster 2024-01-24T03:17:48.565086+0000 mgr.smithi152.jkoscf (mgr.14182) 1190 : cluster [DBG] pgmap v788: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:17:50.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:49 smithi152 bash[16344]: audit 2024-01-24T03:17:48.103572+0000 mgr.smithi152.jkoscf (mgr.14182) 1189 : audit [DBG] from='client.15462 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:50.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:49 smithi152 bash[16344]: cluster 2024-01-24T03:17:48.565086+0000 mgr.smithi152.jkoscf (mgr.14182) 1190 : cluster [DBG] pgmap v788: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:17:51.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:51 smithi195 bash[19846]: cluster 2024-01-24T03:17:50.566878+0000 mgr.smithi152.jkoscf (mgr.14182) 1191 : cluster [DBG] pgmap v789: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:52.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:51 smithi152 bash[16344]: cluster 2024-01-24T03:17:50.566878+0000 mgr.smithi152.jkoscf (mgr.14182) 1191 : cluster [DBG] pgmap v789: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:52.825 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:17:52.826 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:17:53.402 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:17:53.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:53 smithi152 bash[16344]: cluster 2024-01-24T03:17:52.568068+0000 mgr.smithi152.jkoscf (mgr.14182) 1192 : cluster [DBG] pgmap v790: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:53.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:53 smithi152 bash[16344]: audit 2024-01-24T03:17:52.812572+0000 mgr.smithi152.jkoscf (mgr.14182) 1193 : audit [DBG] from='client.15466 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:53 smithi195 bash[19846]: cluster 2024-01-24T03:17:52.568068+0000 mgr.smithi152.jkoscf (mgr.14182) 1192 : cluster [DBG] pgmap v790: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:53.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:53 smithi195 bash[19846]: audit 2024-01-24T03:17:52.812572+0000 mgr.smithi152.jkoscf (mgr.14182) 1193 : audit [DBG] from='client.15466 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:54.404 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:17:55.746 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:55 smithi152 bash[16344]: cluster 2024-01-24T03:17:54.569046+0000 mgr.smithi152.jkoscf (mgr.14182) 1194 : cluster [DBG] pgmap v791: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:55.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:55 smithi195 bash[19846]: cluster 2024-01-24T03:17:54.569046+0000 mgr.smithi152.jkoscf (mgr.14182) 1194 : cluster [DBG] pgmap v791: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:57.706 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:17:57.706 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:17:57.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:57 smithi195 bash[19846]: cluster 2024-01-24T03:17:56.571069+0000 mgr.smithi152.jkoscf (mgr.14182) 1195 : cluster [DBG] pgmap v792: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:58.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:57 smithi152 bash[16344]: cluster 2024-01-24T03:17:56.571069+0000 mgr.smithi152.jkoscf (mgr.14182) 1195 : cluster [DBG] pgmap v792: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:17:58.365 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:17:58.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:58 smithi195 bash[19846]: audit 2024-01-24T03:17:57.689006+0000 mgr.smithi152.jkoscf (mgr.14182) 1196 : audit [DBG] from='client.15470 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:59.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:58 smithi152 bash[16344]: audit 2024-01-24T03:17:57.689006+0000 mgr.smithi152.jkoscf (mgr.14182) 1196 : audit [DBG] from='client.15470 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:17:59.365 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:17:59.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:17:59 smithi195 bash[19846]: cluster 2024-01-24T03:17:58.572421+0000 mgr.smithi152.jkoscf (mgr.14182) 1197 : cluster [DBG] pgmap v793: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:18:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:17:59 smithi152 bash[16344]: cluster 2024-01-24T03:17:58.572421+0000 mgr.smithi152.jkoscf (mgr.14182) 1197 : cluster [DBG] pgmap v793: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:18:00.825 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:00 smithi152 bash[16344]: audit 2024-01-24T03:18:00.529854+0000 mon.smithi152 (mon.0) 946 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:18:00.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:00 smithi195 bash[19846]: audit 2024-01-24T03:18:00.529854+0000 mon.smithi152 (mon.0) 946 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:18:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:01 smithi195 bash[19846]: cluster 2024-01-24T03:18:00.573803+0000 mgr.smithi152.jkoscf (mgr.14182) 1198 : cluster [DBG] pgmap v794: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:01 smithi195 bash[19846]: audit 2024-01-24T03:18:00.851512+0000 mon.smithi152 (mon.0) 947 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:18:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:01 smithi195 bash[19846]: audit 2024-01-24T03:18:00.852955+0000 mon.smithi152 (mon.0) 948 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:18:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:01 smithi195 bash[19846]: audit 2024-01-24T03:18:00.861096+0000 mon.smithi152 (mon.0) 949 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:18:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:01 smithi195 bash[19846]: cluster 2024-01-24T03:18:00.862599+0000 mgr.smithi152.jkoscf (mgr.14182) 1199 : cluster [DBG] pgmap v795: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:18:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:01 smithi195 bash[19846]: audit 2024-01-24T03:18:00.870241+0000 mon.smithi152 (mon.0) 950 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:18:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:01 smithi195 bash[19846]: audit 2024-01-24T03:18:00.888627+0000 mon.smithi152 (mon.0) 951 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:18:01.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:01 smithi195 bash[19846]: cephadm 2024-01-24T03:18:00.895175+0000 mgr.smithi152.jkoscf (mgr.14182) 1200 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.oqvaka on smithi195 2024-01-24T03:18:02.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:01 smithi152 bash[16344]: cluster 2024-01-24T03:18:00.573803+0000 mgr.smithi152.jkoscf (mgr.14182) 1198 : cluster [DBG] pgmap v794: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:02.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:01 smithi152 bash[16344]: audit 2024-01-24T03:18:00.851512+0000 mon.smithi152 (mon.0) 947 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:18:02.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:01 smithi152 bash[16344]: audit 2024-01-24T03:18:00.852955+0000 mon.smithi152 (mon.0) 948 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:18:02.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:01 smithi152 bash[16344]: audit 2024-01-24T03:18:00.861096+0000 mon.smithi152 (mon.0) 949 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:18:02.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:01 smithi152 bash[16344]: cluster 2024-01-24T03:18:00.862599+0000 mgr.smithi152.jkoscf (mgr.14182) 1199 : cluster [DBG] pgmap v795: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:18:02.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:01 smithi152 bash[16344]: audit 2024-01-24T03:18:00.870241+0000 mon.smithi152 (mon.0) 950 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:18:02.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:01 smithi152 bash[16344]: audit 2024-01-24T03:18:00.888627+0000 mon.smithi152 (mon.0) 951 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:18:02.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:01 smithi152 bash[16344]: cephadm 2024-01-24T03:18:00.895175+0000 mgr.smithi152.jkoscf (mgr.14182) 1200 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.oqvaka on smithi195 2024-01-24T03:18:02.739 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:18:02.739 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:15:52.430515Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.tdqqqr on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:18:02.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:02 smithi195 bash[19846]: cluster 2024-01-24T03:18:01.858906+0000 mon.smithi152 (mon.0) 952 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:18:02.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:02 smithi195 bash[19846]: cluster 2024-01-24T03:18:01.858986+0000 mon.smithi152 (mon.0) 953 : cluster [INF] Cluster is now healthy 2024-01-24T03:18:03.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:02 smithi152 bash[16344]: cluster 2024-01-24T03:18:01.858906+0000 mon.smithi152 (mon.0) 952 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:18:03.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:02 smithi152 bash[16344]: cluster 2024-01-24T03:18:01.858986+0000 mon.smithi152 (mon.0) 953 : cluster [INF] Cluster is now healthy 2024-01-24T03:18:03.360 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:18:03.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:03 smithi195 bash[19846]: audit 2024-01-24T03:18:02.727732+0000 mgr.smithi152.jkoscf (mgr.14182) 1201 : audit [DBG] from='client.15474 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:03.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:03 smithi195 bash[19846]: cluster 2024-01-24T03:18:02.863230+0000 mgr.smithi152.jkoscf (mgr.14182) 1202 : cluster [DBG] pgmap v796: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:18:04.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:03 smithi152 bash[16344]: audit 2024-01-24T03:18:02.727732+0000 mgr.smithi152.jkoscf (mgr.14182) 1201 : audit [DBG] from='client.15474 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:04.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:03 smithi152 bash[16344]: cluster 2024-01-24T03:18:02.863230+0000 mgr.smithi152.jkoscf (mgr.14182) 1202 : cluster [DBG] pgmap v796: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:18:04.361 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:18:04.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:04 smithi195 bash[19846]: audit 2024-01-24T03:18:04.695521+0000 mon.smithi152 (mon.0) 954 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.oqvaka"}]: dispatch 2024-01-24T03:18:05.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:04 smithi152 bash[16344]: audit 2024-01-24T03:18:04.695521+0000 mon.smithi152 (mon.0) 954 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.oqvaka"}]: dispatch 2024-01-24T03:18:06.003 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: cephadm 2024-01-24T03:18:04.694353+0000 mgr.smithi152.jkoscf (mgr.14182) 1203 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka 2024-01-24T03:18:06.003 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:18:06.004 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka 2024-01-24T03:18:06.004 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.004 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:18:06.004 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.004 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.oqvaka ... 2024-01-24T03:18:06.004 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:06.004 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:18:06.004 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:18:06.004 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:18:06.004 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:06.004 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:18:06.004 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:18:06.005 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:18:06.005 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:18:06.005 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:18:06.005 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka 2024-01-24T03:18:06.005 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:18:06.005 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka 2024-01-24T03:18:06.005 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.005 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:18:06.005 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.005 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.oqvaka ... 2024-01-24T03:18:06.005 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:06.005 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:18:06.006 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:18:06.006 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:18:06.006 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:06.006 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: cephadm 2024-01-24T03:18:04.694889+0000 mgr.smithi152.jkoscf (mgr.14182) 1204 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.006 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: cephadm 2024-01-24T03:18:04.697221+0000 mgr.smithi152.jkoscf (mgr.14182) 1205 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka 2024-01-24T03:18:06.006 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:18:06.006 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka 2024-01-24T03:18:06.006 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.006 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:18:06.006 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.006 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.oqvaka ... 2024-01-24T03:18:06.006 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:06.007 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:18:06.007 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:18:06.007 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:18:06.007 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:06.007 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: cephadm 2024-01-24T03:18:04.701101+0000 mgr.smithi152.jkoscf (mgr.14182) 1206 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.fwewrw on smithi152 2024-01-24T03:18:06.007 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:05 smithi152 bash[16344]: cluster 2024-01-24T03:18:04.864686+0000 mgr.smithi152.jkoscf (mgr.14182) 1207 : cluster [DBG] pgmap v797: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:18:06.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: cephadm 2024-01-24T03:18:04.694353+0000 mgr.smithi152.jkoscf (mgr.14182) 1203 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka 2024-01-24T03:18:06.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:18:06.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka 2024-01-24T03:18:06.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:18:06.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.oqvaka ... 2024-01-24T03:18:06.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:06.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:18:06.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:18:06.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:18:06.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:06.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:18:06.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:18:06.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:18:06.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:18:06.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.oqvaka ... 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: cephadm 2024-01-24T03:18:04.694889+0000 mgr.smithi152.jkoscf (mgr.14182) 1204 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: cephadm 2024-01-24T03:18:04.697221+0000 mgr.smithi152.jkoscf (mgr.14182) 1205 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka 2024-01-24T03:18:06.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:18:06.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka 2024-01-24T03:18:06.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:18:06.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka 2024-01-24T03:18:06.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.oqvaka ... 2024-01-24T03:18:06.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:06.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:18:06.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:18:06.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:18:06.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:06.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: cephadm 2024-01-24T03:18:04.701101+0000 mgr.smithi152.jkoscf (mgr.14182) 1206 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.fwewrw on smithi152 2024-01-24T03:18:06.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:05 smithi195 bash[19846]: cluster 2024-01-24T03:18:04.864686+0000 mgr.smithi152.jkoscf (mgr.14182) 1207 : cluster [DBG] pgmap v797: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:18:07.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:06 smithi195 bash[19846]: cluster 2024-01-24T03:18:06.866181+0000 mgr.smithi152.jkoscf (mgr.14182) 1208 : cluster [DBG] pgmap v798: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2024-01-24T03:18:07.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:06 smithi152 bash[16344]: cluster 2024-01-24T03:18:06.866181+0000 mgr.smithi152.jkoscf (mgr.14182) 1208 : cluster [DBG] pgmap v798: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2024-01-24T03:18:07.954 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:18:07.955 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:16:56.581015Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.vqaunx on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-vqaunx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.vqaunx\nDeploy daemon haproxy.nfs.foo.smithi195.vqaunx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.516312Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.gcfryo on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-gcfryo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.gcfryo\nDeploy daemon haproxy.nfs.foo.smithi152.gcfryo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:17:00.521000Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ueetbh on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:18:08.760 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:18:09.761 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:18:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: audit 2024-01-24T03:18:07.938357+0000 mgr.smithi152.jkoscf (mgr.14182) 1209 : audit [DBG] from='client.15478 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: cephadm 2024-01-24T03:18:08.720602+0000 mgr.smithi152.jkoscf (mgr.14182) 1210 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.fwewrw ... 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:18:09.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.fwewrw ... 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:09.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: cephadm 2024-01-24T03:18:08.721150+0000 mgr.smithi152.jkoscf (mgr.14182) 1211 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: audit 2024-01-24T03:18:08.721719+0000 mon.smithi152 (mon.0) 955 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.fwewrw"}]: dispatch 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: cephadm 2024-01-24T03:18:08.723279+0000 mgr.smithi152.jkoscf (mgr.14182) 1212 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.fwewrw ... 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:09.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: cephadm 2024-01-24T03:18:08.726715+0000 mgr.smithi152.jkoscf (mgr.14182) 1213 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:18:09.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: cephadm 2024-01-24T03:18:08.729224+0000 mgr.smithi152.jkoscf (mgr.14182) 1214 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:18:09.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: cluster 2024-01-24T03:18:08.730629+0000 mgr.smithi152.jkoscf (mgr.14182) 1215 : cluster [DBG] pgmap v799: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:18:09.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:09 smithi195 bash[19846]: audit 2024-01-24T03:18:09.301191+0000 mon.smithi152 (mon.0) 956 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:18:10.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: audit 2024-01-24T03:18:07.938357+0000 mgr.smithi152.jkoscf (mgr.14182) 1209 : audit [DBG] from='client.15478 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:10.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: cephadm 2024-01-24T03:18:08.720602+0000 mgr.smithi152.jkoscf (mgr.14182) 1210 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw 2024-01-24T03:18:10.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:18:10.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw 2024-01-24T03:18:10.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:10.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:18:10.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:10.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.fwewrw ... 2024-01-24T03:18:10.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:10.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:18:10.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:18:10.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:18:10.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:10.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:18:10.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:18:10.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:18:10.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:18:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:18:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw 2024-01-24T03:18:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:18:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw 2024-01-24T03:18:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:18:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.fwewrw ... 2024-01-24T03:18:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:18:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:18:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:18:10.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:10.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: cephadm 2024-01-24T03:18:08.721150+0000 mgr.smithi152.jkoscf (mgr.14182) 1211 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:10.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: audit 2024-01-24T03:18:08.721719+0000 mon.smithi152 (mon.0) 955 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.fwewrw"}]: dispatch 2024-01-24T03:18:10.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: cephadm 2024-01-24T03:18:08.723279+0000 mgr.smithi152.jkoscf (mgr.14182) 1212 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw 2024-01-24T03:18:10.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:18:10.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw 2024-01-24T03:18:10.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:10.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:18:10.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw 2024-01-24T03:18:10.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.fwewrw ... 2024-01-24T03:18:10.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:10.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:18:10.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:18:10.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:18:10.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:18:10.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: cephadm 2024-01-24T03:18:08.726715+0000 mgr.smithi152.jkoscf (mgr.14182) 1213 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:18:10.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: cephadm 2024-01-24T03:18:08.729224+0000 mgr.smithi152.jkoscf (mgr.14182) 1214 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:18:10.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: cluster 2024-01-24T03:18:08.730629+0000 mgr.smithi152.jkoscf (mgr.14182) 1215 : cluster [DBG] pgmap v799: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:18:10.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:09 smithi152 bash[16344]: audit 2024-01-24T03:18:09.301191+0000 mon.smithi152 (mon.0) 956 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:18:10.894 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:10 smithi152 bash[16344]: cluster 2024-01-24T03:18:09.596493+0000 mon.smithi152 (mon.0) 957 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:18:10.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:10 smithi195 bash[19846]: cluster 2024-01-24T03:18:09.596493+0000 mon.smithi152 (mon.0) 957 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:18:11.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:11 smithi195 bash[19846]: cluster 2024-01-24T03:18:10.731897+0000 mgr.smithi152.jkoscf (mgr.14182) 1216 : cluster [DBG] pgmap v800: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:18:12.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:11 smithi152 bash[16344]: cluster 2024-01-24T03:18:10.731897+0000 mgr.smithi152.jkoscf (mgr.14182) 1216 : cluster [DBG] pgmap v800: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:18:12.994 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:18:12.994 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:18:13.561 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:18:14.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:13 smithi195 bash[19846]: cluster 2024-01-24T03:18:12.732869+0000 mgr.smithi152.jkoscf (mgr.14182) 1217 : cluster [DBG] pgmap v801: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:18:14.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:13 smithi195 bash[19846]: audit 2024-01-24T03:18:12.848116+0000 mon.smithi152 (mon.0) 958 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:18:14.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:13 smithi152 bash[16344]: cluster 2024-01-24T03:18:12.732869+0000 mgr.smithi152.jkoscf (mgr.14182) 1217 : cluster [DBG] pgmap v801: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:18:14.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:13 smithi152 bash[16344]: audit 2024-01-24T03:18:12.848116+0000 mon.smithi152 (mon.0) 958 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:18:14.562 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:18:15.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:14 smithi195 bash[19846]: audit 2024-01-24T03:18:12.979886+0000 mgr.smithi152.jkoscf (mgr.14182) 1218 : audit [DBG] from='client.15482 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:15.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:14 smithi152 bash[16344]: audit 2024-01-24T03:18:12.979886+0000 mgr.smithi152.jkoscf (mgr.14182) 1218 : audit [DBG] from='client.15482 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:16.125 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:15 smithi152 bash[16344]: cluster 2024-01-24T03:18:14.734635+0000 mgr.smithi152.jkoscf (mgr.14182) 1219 : cluster [DBG] pgmap v802: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:18:16.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:15 smithi195 bash[19846]: cluster 2024-01-24T03:18:14.734635+0000 mgr.smithi152.jkoscf (mgr.14182) 1219 : cluster [DBG] pgmap v802: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:18:17.965 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:18:17.965 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:18:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:17 smithi195 bash[19846]: cluster 2024-01-24T03:18:16.736592+0000 mgr.smithi152.jkoscf (mgr.14182) 1220 : cluster [DBG] pgmap v803: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2024-01-24T03:18:18.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:17 smithi152 bash[16344]: cluster 2024-01-24T03:18:16.736592+0000 mgr.smithi152.jkoscf (mgr.14182) 1220 : cluster [DBG] pgmap v803: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2024-01-24T03:18:18.573 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:18:19.575 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:18:19.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:19 smithi195 bash[19846]: audit 2024-01-24T03:18:17.948311+0000 mgr.smithi152.jkoscf (mgr.14182) 1221 : audit [DBG] from='client.15486 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:19.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:19 smithi195 bash[19846]: cluster 2024-01-24T03:18:18.737857+0000 mgr.smithi152.jkoscf (mgr.14182) 1222 : cluster [DBG] pgmap v804: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:18:20.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:19 smithi152 bash[16344]: audit 2024-01-24T03:18:17.948311+0000 mgr.smithi152.jkoscf (mgr.14182) 1221 : audit [DBG] from='client.15486 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:20.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:19 smithi152 bash[16344]: cluster 2024-01-24T03:18:18.737857+0000 mgr.smithi152.jkoscf (mgr.14182) 1222 : cluster [DBG] pgmap v804: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-24T03:18:22.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:21 smithi152 bash[16344]: cluster 2024-01-24T03:18:20.739697+0000 mgr.smithi152.jkoscf (mgr.14182) 1223 : cluster [DBG] pgmap v805: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:22.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:21 smithi195 bash[19846]: cluster 2024-01-24T03:18:20.739697+0000 mgr.smithi152.jkoscf (mgr.14182) 1223 : cluster [DBG] pgmap v805: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:22.699 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:18:22.699 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:18:23.333 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:18:24.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:23 smithi152 bash[16344]: audit 2024-01-24T03:18:22.683839+0000 mgr.smithi152.jkoscf (mgr.14182) 1224 : audit [DBG] from='client.15490 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:24.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:23 smithi152 bash[16344]: cluster 2024-01-24T03:18:22.741102+0000 mgr.smithi152.jkoscf (mgr.14182) 1225 : cluster [DBG] pgmap v806: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:24.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:23 smithi195 bash[19846]: audit 2024-01-24T03:18:22.683839+0000 mgr.smithi152.jkoscf (mgr.14182) 1224 : audit [DBG] from='client.15490 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:24.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:23 smithi195 bash[19846]: cluster 2024-01-24T03:18:22.741102+0000 mgr.smithi152.jkoscf (mgr.14182) 1225 : cluster [DBG] pgmap v806: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:24.334 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:18:25.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:25 smithi152 bash[16344]: audit 2024-01-24T03:18:24.301266+0000 mon.smithi152 (mon.0) 959 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:18:25.583 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:25 smithi152 bash[16344]: cluster 2024-01-24T03:18:24.742908+0000 mgr.smithi152.jkoscf (mgr.14182) 1226 : cluster [DBG] pgmap v807: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:25.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:25 smithi195 bash[19846]: audit 2024-01-24T03:18:24.301266+0000 mon.smithi152 (mon.0) 959 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:18:25.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:25 smithi195 bash[19846]: cluster 2024-01-24T03:18:24.742908+0000 mgr.smithi152.jkoscf (mgr.14182) 1226 : cluster [DBG] pgmap v807: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:27.484 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:18:27.484 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:18:28.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:27 smithi152 bash[16344]: cluster 2024-01-24T03:18:26.744737+0000 mgr.smithi152.jkoscf (mgr.14182) 1227 : cluster [DBG] pgmap v808: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:18:28.109 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:18:28.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:27 smithi195 bash[19846]: cluster 2024-01-24T03:18:26.744737+0000 mgr.smithi152.jkoscf (mgr.14182) 1227 : cluster [DBG] pgmap v808: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:18:29.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:28 smithi152 bash[16344]: audit 2024-01-24T03:18:27.473010+0000 mgr.smithi152.jkoscf (mgr.14182) 1228 : audit [DBG] from='client.15494 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:29.110 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:18:29.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:28 smithi195 bash[19846]: audit 2024-01-24T03:18:27.473010+0000 mgr.smithi152.jkoscf (mgr.14182) 1228 : audit [DBG] from='client.15494 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:30.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:29 smithi152 bash[16344]: cluster 2024-01-24T03:18:28.746144+0000 mgr.smithi152.jkoscf (mgr.14182) 1229 : cluster [DBG] pgmap v809: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:30.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:29 smithi195 bash[19846]: cluster 2024-01-24T03:18:28.746144+0000 mgr.smithi152.jkoscf (mgr.14182) 1229 : cluster [DBG] pgmap v809: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:32.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:31 smithi152 bash[16344]: cluster 2024-01-24T03:18:30.747956+0000 mgr.smithi152.jkoscf (mgr.14182) 1230 : cluster [DBG] pgmap v810: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:31 smithi195 bash[19846]: cluster 2024-01-24T03:18:30.747956+0000 mgr.smithi152.jkoscf (mgr.14182) 1230 : cluster [DBG] pgmap v810: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:32.256 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:18:32.256 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:18:32.953 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:18:33.955 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:18:34.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:33 smithi152 bash[16344]: audit 2024-01-24T03:18:32.241669+0000 mgr.smithi152.jkoscf (mgr.14182) 1231 : audit [DBG] from='client.15498 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:34.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:33 smithi152 bash[16344]: cluster 2024-01-24T03:18:32.749233+0000 mgr.smithi152.jkoscf (mgr.14182) 1232 : cluster [DBG] pgmap v811: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:34.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:33 smithi195 bash[19846]: audit 2024-01-24T03:18:32.241669+0000 mgr.smithi152.jkoscf (mgr.14182) 1231 : audit [DBG] from='client.15498 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:34.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:33 smithi195 bash[19846]: cluster 2024-01-24T03:18:32.749233+0000 mgr.smithi152.jkoscf (mgr.14182) 1232 : cluster [DBG] pgmap v811: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:36.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:35 smithi152 bash[16344]: cluster 2024-01-24T03:18:34.751001+0000 mgr.smithi152.jkoscf (mgr.14182) 1233 : cluster [DBG] pgmap v812: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:36.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:35 smithi195 bash[19846]: cluster 2024-01-24T03:18:34.751001+0000 mgr.smithi152.jkoscf (mgr.14182) 1233 : cluster [DBG] pgmap v812: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:37.308 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:18:37.309 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:18:37.887 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:18:38.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:37 smithi195 bash[19846]: cluster 2024-01-24T03:18:36.752859+0000 mgr.smithi152.jkoscf (mgr.14182) 1234 : cluster [DBG] pgmap v813: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:18:38.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:37 smithi152 bash[16344]: cluster 2024-01-24T03:18:36.752859+0000 mgr.smithi152.jkoscf (mgr.14182) 1234 : cluster [DBG] pgmap v813: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:18:38.889 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:18:39.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:38 smithi195 bash[19846]: audit 2024-01-24T03:18:37.292465+0000 mgr.smithi152.jkoscf (mgr.14182) 1235 : audit [DBG] from='client.15502 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:39.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:38 smithi152 bash[16344]: audit 2024-01-24T03:18:37.292465+0000 mgr.smithi152.jkoscf (mgr.14182) 1235 : audit [DBG] from='client.15502 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:40.132 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:39 smithi152 bash[16344]: cluster 2024-01-24T03:18:38.754299+0000 mgr.smithi152.jkoscf (mgr.14182) 1236 : cluster [DBG] pgmap v814: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:40.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:39 smithi195 bash[19846]: cluster 2024-01-24T03:18:38.754299+0000 mgr.smithi152.jkoscf (mgr.14182) 1236 : cluster [DBG] pgmap v814: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:42.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:41 smithi152 bash[16344]: cluster 2024-01-24T03:18:40.756102+0000 mgr.smithi152.jkoscf (mgr.14182) 1237 : cluster [DBG] pgmap v815: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:42.204 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:18:42.204 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:18:42.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:41 smithi195 bash[19846]: cluster 2024-01-24T03:18:40.756102+0000 mgr.smithi152.jkoscf (mgr.14182) 1237 : cluster [DBG] pgmap v815: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:42.835 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:18:43.837 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:18:44.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:43 smithi195 bash[19846]: audit 2024-01-24T03:18:42.195843+0000 mgr.smithi152.jkoscf (mgr.14182) 1238 : audit [DBG] from='client.15506 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:44.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:43 smithi195 bash[19846]: cluster 2024-01-24T03:18:42.757433+0000 mgr.smithi152.jkoscf (mgr.14182) 1239 : cluster [DBG] pgmap v816: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:44.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:43 smithi152 bash[16344]: audit 2024-01-24T03:18:42.195843+0000 mgr.smithi152.jkoscf (mgr.14182) 1238 : audit [DBG] from='client.15506 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:44.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:43 smithi152 bash[16344]: cluster 2024-01-24T03:18:42.757433+0000 mgr.smithi152.jkoscf (mgr.14182) 1239 : cluster [DBG] pgmap v816: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:45 smithi195 bash[19846]: cluster 2024-01-24T03:18:44.759232+0000 mgr.smithi152.jkoscf (mgr.14182) 1240 : cluster [DBG] pgmap v817: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-24T03:18:46.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:45 smithi152 bash[16344]: cluster 2024-01-24T03:18:44.759232+0000 mgr.smithi152.jkoscf (mgr.14182) 1240 : cluster [DBG] pgmap v817: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-24T03:18:47.131 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:18:47.131 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:18:47.727 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:18:48.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:47 smithi152 bash[16344]: cluster 2024-01-24T03:18:46.760969+0000 mgr.smithi152.jkoscf (mgr.14182) 1241 : cluster [DBG] pgmap v818: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 0 op/s 2024-01-24T03:18:48.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:47 smithi195 bash[19846]: cluster 2024-01-24T03:18:46.760969+0000 mgr.smithi152.jkoscf (mgr.14182) 1241 : cluster [DBG] pgmap v818: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 0 op/s 2024-01-24T03:18:48.727 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:18:49.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:48 smithi152 bash[16344]: audit 2024-01-24T03:18:47.115857+0000 mgr.smithi152.jkoscf (mgr.14182) 1242 : audit [DBG] from='client.15510 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:49.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:48 smithi195 bash[19846]: audit 2024-01-24T03:18:47.115857+0000 mgr.smithi152.jkoscf (mgr.14182) 1242 : audit [DBG] from='client.15510 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:50.114 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:49 smithi152 bash[16344]: cluster 2024-01-24T03:18:48.762626+0000 mgr.smithi152.jkoscf (mgr.14182) 1243 : cluster [DBG] pgmap v819: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-24T03:18:50.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:49 smithi195 bash[19846]: cluster 2024-01-24T03:18:48.762626+0000 mgr.smithi152.jkoscf (mgr.14182) 1243 : cluster [DBG] pgmap v819: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-24T03:18:51.887 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:18:51.887 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:18:52.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:51 smithi195 bash[19846]: cluster 2024-01-24T03:18:50.764682+0000 mgr.smithi152.jkoscf (mgr.14182) 1244 : cluster [DBG] pgmap v820: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-24T03:18:52.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:51 smithi152 bash[16344]: cluster 2024-01-24T03:18:50.764682+0000 mgr.smithi152.jkoscf (mgr.14182) 1244 : cluster [DBG] pgmap v820: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-24T03:18:52.516 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:18:53.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:52 smithi195 bash[19846]: audit 2024-01-24T03:18:51.870593+0000 mgr.smithi152.jkoscf (mgr.14182) 1245 : audit [DBG] from='client.15514 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:53.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:52 smithi152 bash[16344]: audit 2024-01-24T03:18:51.870593+0000 mgr.smithi152.jkoscf (mgr.14182) 1245 : audit [DBG] from='client.15514 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:53.517 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:18:54.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:53 smithi195 bash[19846]: cluster 2024-01-24T03:18:52.765970+0000 mgr.smithi152.jkoscf (mgr.14182) 1246 : cluster [DBG] pgmap v821: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-24T03:18:54.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:53 smithi152 bash[16344]: cluster 2024-01-24T03:18:52.765970+0000 mgr.smithi152.jkoscf (mgr.14182) 1246 : cluster [DBG] pgmap v821: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-24T03:18:56.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:55 smithi195 bash[19846]: cluster 2024-01-24T03:18:54.767510+0000 mgr.smithi152.jkoscf (mgr.14182) 1247 : cluster [DBG] pgmap v822: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-24T03:18:56.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:55 smithi152 bash[16344]: cluster 2024-01-24T03:18:54.767510+0000 mgr.smithi152.jkoscf (mgr.14182) 1247 : cluster [DBG] pgmap v822: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-24T03:18:56.933 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:18:56.933 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:18:57.534 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:18:58.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:57 smithi195 bash[19846]: cluster 2024-01-24T03:18:56.768652+0000 mgr.smithi152.jkoscf (mgr.14182) 1248 : cluster [DBG] pgmap v823: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:18:58.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:57 smithi195 bash[19846]: audit 2024-01-24T03:18:56.916776+0000 mgr.smithi152.jkoscf (mgr.14182) 1249 : audit [DBG] from='client.15518 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:58.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:57 smithi152 bash[16344]: cluster 2024-01-24T03:18:56.768652+0000 mgr.smithi152.jkoscf (mgr.14182) 1248 : cluster [DBG] pgmap v823: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:18:58.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:57 smithi152 bash[16344]: audit 2024-01-24T03:18:56.916776+0000 mgr.smithi152.jkoscf (mgr.14182) 1249 : audit [DBG] from='client.15518 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:18:58.535 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:18:59.924 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:18:59 smithi152 bash[16344]: cluster 2024-01-24T03:18:58.770025+0000 mgr.smithi152.jkoscf (mgr.14182) 1250 : cluster [DBG] pgmap v824: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:18:59.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:18:59 smithi195 bash[19846]: cluster 2024-01-24T03:18:58.770025+0000 mgr.smithi152.jkoscf (mgr.14182) 1250 : cluster [DBG] pgmap v824: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:01.670 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:19:01.670 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:19:02.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:01 smithi152 bash[16344]: cluster 2024-01-24T03:19:00.771963+0000 mgr.smithi152.jkoscf (mgr.14182) 1251 : cluster [DBG] pgmap v825: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:02.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:01 smithi195 bash[19846]: cluster 2024-01-24T03:19:00.771963+0000 mgr.smithi152.jkoscf (mgr.14182) 1251 : cluster [DBG] pgmap v825: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:02.296 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:19:03.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:02 smithi195 bash[19846]: audit 2024-01-24T03:19:01.656515+0000 mgr.smithi152.jkoscf (mgr.14182) 1252 : audit [DBG] from='client.15522 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:03.297 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:19:03.308 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:02 smithi152 bash[16344]: audit 2024-01-24T03:19:01.656515+0000 mgr.smithi152.jkoscf (mgr.14182) 1252 : audit [DBG] from='client.15522 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:03 smithi195 bash[19846]: cluster 2024-01-24T03:19:02.773237+0000 mgr.smithi152.jkoscf (mgr.14182) 1253 : cluster [DBG] pgmap v826: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:04.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:03 smithi152 bash[16344]: cluster 2024-01-24T03:19:02.773237+0000 mgr.smithi152.jkoscf (mgr.14182) 1253 : cluster [DBG] pgmap v826: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:06.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:05 smithi195 bash[19846]: cluster 2024-01-24T03:19:04.774441+0000 mgr.smithi152.jkoscf (mgr.14182) 1254 : cluster [DBG] pgmap v827: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:06.302 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:05 smithi152 bash[16344]: cluster 2024-01-24T03:19:04.774441+0000 mgr.smithi152.jkoscf (mgr.14182) 1254 : cluster [DBG] pgmap v827: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:06.724 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:19:06.724 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:19:07.321 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:19:08.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:07 smithi195 bash[19846]: audit 2024-01-24T03:19:06.715622+0000 mgr.smithi152.jkoscf (mgr.14182) 1255 : audit [DBG] from='client.15526 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:08.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:07 smithi195 bash[19846]: cluster 2024-01-24T03:19:06.776540+0000 mgr.smithi152.jkoscf (mgr.14182) 1256 : cluster [DBG] pgmap v828: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:19:08.322 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:19:08.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:07 smithi152 bash[16344]: audit 2024-01-24T03:19:06.715622+0000 mgr.smithi152.jkoscf (mgr.14182) 1255 : audit [DBG] from='client.15526 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:08.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:07 smithi152 bash[16344]: cluster 2024-01-24T03:19:06.776540+0000 mgr.smithi152.jkoscf (mgr.14182) 1256 : cluster [DBG] pgmap v828: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:19:09.684 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:09 smithi152 bash[16344]: audit 2024-01-24T03:19:08.733805+0000 mon.smithi152 (mon.0) 960 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:19:09.685 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:09 smithi152 bash[16344]: cluster 2024-01-24T03:19:08.777768+0000 mgr.smithi152.jkoscf (mgr.14182) 1257 : cluster [DBG] pgmap v829: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:09.685 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:09 smithi152 bash[16344]: audit 2024-01-24T03:19:09.061146+0000 mon.smithi152 (mon.0) 961 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:19:09.685 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:09 smithi152 bash[16344]: audit 2024-01-24T03:19:09.062973+0000 mon.smithi152 (mon.0) 962 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:19:09.685 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:09 smithi152 bash[16344]: audit 2024-01-24T03:19:09.072105+0000 mon.smithi152 (mon.0) 963 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:19:09.685 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:09 smithi152 bash[16344]: audit 2024-01-24T03:19:09.083438+0000 mon.smithi152 (mon.0) 964 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:19:09.685 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:09 smithi152 bash[16344]: audit 2024-01-24T03:19:09.098059+0000 mon.smithi152 (mon.0) 965 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:19:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:09 smithi195 bash[19846]: audit 2024-01-24T03:19:08.733805+0000 mon.smithi152 (mon.0) 960 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:19:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:09 smithi195 bash[19846]: cluster 2024-01-24T03:19:08.777768+0000 mgr.smithi152.jkoscf (mgr.14182) 1257 : cluster [DBG] pgmap v829: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:09 smithi195 bash[19846]: audit 2024-01-24T03:19:09.061146+0000 mon.smithi152 (mon.0) 961 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:19:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:09 smithi195 bash[19846]: audit 2024-01-24T03:19:09.062973+0000 mon.smithi152 (mon.0) 962 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:19:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:09 smithi195 bash[19846]: audit 2024-01-24T03:19:09.072105+0000 mon.smithi152 (mon.0) 963 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:19:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:09 smithi195 bash[19846]: audit 2024-01-24T03:19:09.083438+0000 mon.smithi152 (mon.0) 964 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:19:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:09 smithi195 bash[19846]: audit 2024-01-24T03:19:09.098059+0000 mon.smithi152 (mon.0) 965 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:19:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:10 smithi195 bash[19846]: cluster 2024-01-24T03:19:09.073319+0000 mgr.smithi152.jkoscf (mgr.14182) 1258 : cluster [DBG] pgmap v830: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:19:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:10 smithi195 bash[19846]: cephadm 2024-01-24T03:19:09.101889+0000 mgr.smithi152.jkoscf (mgr.14182) 1259 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.smjmns on smithi195 2024-01-24T03:19:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:10 smithi195 bash[19846]: cluster 2024-01-24T03:19:09.619779+0000 mon.smithi152 (mon.0) 966 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:19:10.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:10 smithi195 bash[19846]: cluster 2024-01-24T03:19:09.619832+0000 mon.smithi152 (mon.0) 967 : cluster [INF] Cluster is now healthy 2024-01-24T03:19:11.035 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:10 smithi152 bash[16344]: cluster 2024-01-24T03:19:09.073319+0000 mgr.smithi152.jkoscf (mgr.14182) 1258 : cluster [DBG] pgmap v830: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:19:11.035 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:10 smithi152 bash[16344]: cephadm 2024-01-24T03:19:09.101889+0000 mgr.smithi152.jkoscf (mgr.14182) 1259 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.smjmns on smithi195 2024-01-24T03:19:11.035 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:10 smithi152 bash[16344]: cluster 2024-01-24T03:19:09.619779+0000 mon.smithi152 (mon.0) 966 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:19:11.035 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:10 smithi152 bash[16344]: cluster 2024-01-24T03:19:09.619832+0000 mon.smithi152 (mon.0) 967 : cluster [INF] Cluster is now healthy 2024-01-24T03:19:11.465 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:19:11.465 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:17:00.524200Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.ajojvp on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:19:12.096 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:19:12.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:12 smithi195 bash[19846]: cluster 2024-01-24T03:19:11.075035+0000 mgr.smithi152.jkoscf (mgr.14182) 1260 : cluster [DBG] pgmap v831: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:19:12.807 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:12 smithi195 bash[19846]: audit 2024-01-24T03:19:11.453244+0000 mgr.smithi152.jkoscf (mgr.14182) 1261 : audit [DBG] from='client.15530 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:13.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:12 smithi152 bash[16344]: cluster 2024-01-24T03:19:11.075035+0000 mgr.smithi152.jkoscf (mgr.14182) 1260 : cluster [DBG] pgmap v831: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:19:13.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:12 smithi152 bash[16344]: audit 2024-01-24T03:19:11.453244+0000 mgr.smithi152.jkoscf (mgr.14182) 1261 : audit [DBG] from='client.15530 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:13.097 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:19:13.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: cephadm 2024-01-24T03:19:12.880134+0000 mgr.smithi152.jkoscf (mgr.14182) 1262 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns 2024-01-24T03:19:13.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:19:13.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns 2024-01-24T03:19:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns 2024-01-24T03:19:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:19:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns 2024-01-24T03:19:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.smjmns ... 2024-01-24T03:19:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:19:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:19:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:19:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:19:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:19:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:19:13.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.smjmns ... 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: cephadm 2024-01-24T03:19:12.880759+0000 mgr.smithi152.jkoscf (mgr.14182) 1263 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.smjmns 2024-01-24T03:19:13.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: audit 2024-01-24T03:19:12.881765+0000 mon.smithi152 (mon.0) 968 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.smjmns"}]: dispatch 2024-01-24T03:19:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: cephadm 2024-01-24T03:19:12.883432+0000 mgr.smithi152.jkoscf (mgr.14182) 1264 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns 2024-01-24T03:19:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:19:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns 2024-01-24T03:19:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns 2024-01-24T03:19:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:19:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns 2024-01-24T03:19:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.smjmns ... 2024-01-24T03:19:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:19:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:19:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:19:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:13.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:13 smithi195 bash[19846]: cephadm 2024-01-24T03:19:12.887322+0000 mgr.smithi152.jkoscf (mgr.14182) 1265 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.sccowp on smithi152 2024-01-24T03:19:14.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: cephadm 2024-01-24T03:19:12.880134+0000 mgr.smithi152.jkoscf (mgr.14182) 1262 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns 2024-01-24T03:19:14.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:19:14.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns 2024-01-24T03:19:14.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns 2024-01-24T03:19:14.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:19:14.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns 2024-01-24T03:19:14.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.smjmns ... 2024-01-24T03:19:14.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns 2024-01-24T03:19:14.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.smjmns ... 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: cephadm 2024-01-24T03:19:12.880759+0000 mgr.smithi152.jkoscf (mgr.14182) 1263 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.smjmns 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: audit 2024-01-24T03:19:12.881765+0000 mon.smithi152 (mon.0) 968 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.smjmns"}]: dispatch 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: cephadm 2024-01-24T03:19:12.883432+0000 mgr.smithi152.jkoscf (mgr.14182) 1264 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns 2024-01-24T03:19:14.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:19:14.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns 2024-01-24T03:19:14.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.smjmns ... 2024-01-24T03:19:14.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:14.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:19:14.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:19:14.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:19:14.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:14.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:13 smithi152 bash[16344]: cephadm 2024-01-24T03:19:12.887322+0000 mgr.smithi152.jkoscf (mgr.14182) 1265 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.sccowp on smithi152 2024-01-24T03:19:14.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:14 smithi195 bash[19846]: cluster 2024-01-24T03:19:13.076065+0000 mgr.smithi152.jkoscf (mgr.14182) 1266 : cluster [DBG] pgmap v832: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:19:15.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:14 smithi152 bash[16344]: cluster 2024-01-24T03:19:13.076065+0000 mgr.smithi152.jkoscf (mgr.14182) 1266 : cluster [DBG] pgmap v832: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:19:16.515 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:19:16.516 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:04.696998Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.oqvaka on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-oqvaka\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.oqvaka\nDeploy daemon haproxy.nfs.foo.smithi195.oqvaka ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.723032Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.fwewrw on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-fwewrw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.fwewrw\nDeploy daemon haproxy.nfs.foo.smithi152.fwewrw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:18:08.726574Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.mcfzgq on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:19:16.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:16 smithi152 bash[16344]: cluster 2024-01-24T03:19:15.077586+0000 mgr.smithi152.jkoscf (mgr.14182) 1267 : cluster [DBG] pgmap v833: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:19:16.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:16 smithi195 bash[19846]: cluster 2024-01-24T03:19:15.077586+0000 mgr.smithi152.jkoscf (mgr.14182) 1267 : cluster [DBG] pgmap v833: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:19:17.310 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:19:17.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: audit 2024-01-24T03:19:16.505669+0000 mgr.smithi152.jkoscf (mgr.14182) 1268 : audit [DBG] from='client.15534 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: cephadm 2024-01-24T03:19:16.733950+0000 mgr.smithi152.jkoscf (mgr.14182) 1269 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp 2024-01-24T03:19:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:19:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp 2024-01-24T03:19:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp 2024-01-24T03:19:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:19:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp 2024-01-24T03:19:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.sccowp ... 2024-01-24T03:19:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:19:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:19:17.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.sccowp ... 2024-01-24T03:19:17.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: cephadm 2024-01-24T03:19:16.734174+0000 mgr.smithi152.jkoscf (mgr.14182) 1270 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.sccowp 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: audit 2024-01-24T03:19:16.734640+0000 mon.smithi152 (mon.0) 969 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.sccowp"}]: dispatch 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: cephadm 2024-01-24T03:19:16.735695+0000 mgr.smithi152.jkoscf (mgr.14182) 1271 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.sccowp ... 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:17.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:19:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:19:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:19:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: cephadm 2024-01-24T03:19:16.737722+0000 mgr.smithi152.jkoscf (mgr.14182) 1272 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:19:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: cephadm 2024-01-24T03:19:16.739284+0000 mgr.smithi152.jkoscf (mgr.14182) 1273 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:19:17.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:17 smithi195 bash[19846]: cluster 2024-01-24T03:19:16.740659+0000 mgr.smithi152.jkoscf (mgr.14182) 1274 : cluster [DBG] pgmap v834: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:19:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: audit 2024-01-24T03:19:16.505669+0000 mgr.smithi152.jkoscf (mgr.14182) 1268 : audit [DBG] from='client.15534 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: cephadm 2024-01-24T03:19:16.733950+0000 mgr.smithi152.jkoscf (mgr.14182) 1269 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp 2024-01-24T03:19:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:19:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp 2024-01-24T03:19:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp 2024-01-24T03:19:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:19:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp 2024-01-24T03:19:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.sccowp ... 2024-01-24T03:19:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:19:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:19:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:19:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:19:18.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.sccowp ... 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:19:18.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: cephadm 2024-01-24T03:19:16.734174+0000 mgr.smithi152.jkoscf (mgr.14182) 1270 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.sccowp 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: audit 2024-01-24T03:19:16.734640+0000 mon.smithi152 (mon.0) 969 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.sccowp"}]: dispatch 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: cephadm 2024-01-24T03:19:16.735695+0000 mgr.smithi152.jkoscf (mgr.14182) 1271 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.sccowp ... 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:19:18.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:19:18.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:19:18.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: cephadm 2024-01-24T03:19:16.737722+0000 mgr.smithi152.jkoscf (mgr.14182) 1272 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:19:18.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: cephadm 2024-01-24T03:19:16.739284+0000 mgr.smithi152.jkoscf (mgr.14182) 1273 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:19:18.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:17 smithi152 bash[16344]: cluster 2024-01-24T03:19:16.740659+0000 mgr.smithi152.jkoscf (mgr.14182) 1274 : cluster [DBG] pgmap v834: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:19:18.310 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:19:18.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:18 smithi195 bash[19846]: cluster 2024-01-24T03:19:17.656774+0000 mon.smithi152 (mon.0) 970 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:19:18.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:18 smithi195 bash[19846]: audit 2024-01-24T03:19:17.910192+0000 mon.smithi152 (mon.0) 971 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:19:19.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:18 smithi152 bash[16344]: cluster 2024-01-24T03:19:17.656774+0000 mon.smithi152 (mon.0) 970 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:19:19.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:18 smithi152 bash[16344]: audit 2024-01-24T03:19:17.910192+0000 mon.smithi152 (mon.0) 971 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:19:19.794 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:19 smithi152 bash[16344]: cluster 2024-01-24T03:19:18.741887+0000 mgr.smithi152.jkoscf (mgr.14182) 1275 : cluster [DBG] pgmap v835: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:19:19.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:19 smithi195 bash[19846]: cluster 2024-01-24T03:19:18.741887+0000 mgr.smithi152.jkoscf (mgr.14182) 1275 : cluster [DBG] pgmap v835: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:19:21.626 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:19:21.626 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.735577Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\nDeploy daemon haproxy.nfs.foo.smithi152.sccowp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.737624Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:19:22.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:21 smithi152 bash[16344]: cluster 2024-01-24T03:19:20.744021+0000 mgr.smithi152.jkoscf (mgr.14182) 1276 : cluster [DBG] pgmap v836: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:19:22.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:21 smithi195 bash[19846]: cluster 2024-01-24T03:19:20.744021+0000 mgr.smithi152.jkoscf (mgr.14182) 1276 : cluster [DBG] pgmap v836: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:19:22.283 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:19:23.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:22 smithi152 bash[16344]: audit 2024-01-24T03:19:21.609617+0000 mgr.smithi152.jkoscf (mgr.14182) 1277 : audit [DBG] from='client.15538 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:23.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:22 smithi195 bash[19846]: audit 2024-01-24T03:19:21.609617+0000 mgr.smithi152.jkoscf (mgr.14182) 1277 : audit [DBG] from='client.15538 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:23.284 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:19:24.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:23 smithi152 bash[16344]: cluster 2024-01-24T03:19:22.745360+0000 mgr.smithi152.jkoscf (mgr.14182) 1278 : cluster [DBG] pgmap v837: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:19:24.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:23 smithi195 bash[19846]: cluster 2024-01-24T03:19:22.745360+0000 mgr.smithi152.jkoscf (mgr.14182) 1278 : cluster [DBG] pgmap v837: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:19:26.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:25 smithi152 bash[16344]: cluster 2024-01-24T03:19:24.747135+0000 mgr.smithi152.jkoscf (mgr.14182) 1279 : cluster [DBG] pgmap v838: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:19:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:25 smithi195 bash[19846]: cluster 2024-01-24T03:19:24.747135+0000 mgr.smithi152.jkoscf (mgr.14182) 1279 : cluster [DBG] pgmap v838: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:19:26.650 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:19:26.650 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.735577Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\nDeploy daemon haproxy.nfs.foo.smithi152.sccowp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.737624Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:19:27.286 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:19:28.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:27 smithi152 bash[16344]: audit 2024-01-24T03:19:26.641517+0000 mgr.smithi152.jkoscf (mgr.14182) 1280 : audit [DBG] from='client.15542 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:28.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:27 smithi152 bash[16344]: cluster 2024-01-24T03:19:26.749466+0000 mgr.smithi152.jkoscf (mgr.14182) 1281 : cluster [DBG] pgmap v839: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2024-01-24T03:19:28.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:27 smithi195 bash[19846]: audit 2024-01-24T03:19:26.641517+0000 mgr.smithi152.jkoscf (mgr.14182) 1280 : audit [DBG] from='client.15542 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:28.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:27 smithi195 bash[19846]: cluster 2024-01-24T03:19:26.749466+0000 mgr.smithi152.jkoscf (mgr.14182) 1281 : cluster [DBG] pgmap v839: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2024-01-24T03:19:28.287 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:19:29.757 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:29 smithi152 bash[16344]: cluster 2024-01-24T03:19:28.750938+0000 mgr.smithi152.jkoscf (mgr.14182) 1282 : cluster [DBG] pgmap v840: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:29.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:29 smithi195 bash[19846]: cluster 2024-01-24T03:19:28.750938+0000 mgr.smithi152.jkoscf (mgr.14182) 1282 : cluster [DBG] pgmap v840: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:31.524 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:19:31.524 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.735577Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\nDeploy daemon haproxy.nfs.foo.smithi152.sccowp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.737624Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:19:32.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:31 smithi152 bash[16344]: cluster 2024-01-24T03:19:30.752777+0000 mgr.smithi152.jkoscf (mgr.14182) 1283 : cluster [DBG] pgmap v841: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:32.150 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:19:32.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:31 smithi195 bash[19846]: cluster 2024-01-24T03:19:30.752777+0000 mgr.smithi152.jkoscf (mgr.14182) 1283 : cluster [DBG] pgmap v841: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:33.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:32 smithi152 bash[16344]: audit 2024-01-24T03:19:31.509542+0000 mgr.smithi152.jkoscf (mgr.14182) 1284 : audit [DBG] from='client.15546 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:33.151 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:19:33.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:32 smithi195 bash[19846]: audit 2024-01-24T03:19:31.509542+0000 mgr.smithi152.jkoscf (mgr.14182) 1284 : audit [DBG] from='client.15546 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:34.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:33 smithi152 bash[16344]: cluster 2024-01-24T03:19:32.754210+0000 mgr.smithi152.jkoscf (mgr.14182) 1285 : cluster [DBG] pgmap v842: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:34.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:33 smithi195 bash[19846]: cluster 2024-01-24T03:19:32.754210+0000 mgr.smithi152.jkoscf (mgr.14182) 1285 : cluster [DBG] pgmap v842: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:36.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:35 smithi152 bash[16344]: cluster 2024-01-24T03:19:34.756112+0000 mgr.smithi152.jkoscf (mgr.14182) 1286 : cluster [DBG] pgmap v843: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:36.240 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:19:36.240 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.735577Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\nDeploy daemon haproxy.nfs.foo.smithi152.sccowp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.737624Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:19:36.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:35 smithi195 bash[19846]: cluster 2024-01-24T03:19:34.756112+0000 mgr.smithi152.jkoscf (mgr.14182) 1286 : cluster [DBG] pgmap v843: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:36.822 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:19:37.822 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:19:38.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:37 smithi195 bash[19846]: audit 2024-01-24T03:19:36.223675+0000 mgr.smithi152.jkoscf (mgr.14182) 1287 : audit [DBG] from='client.15550 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:38.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:37 smithi195 bash[19846]: cluster 2024-01-24T03:19:36.757917+0000 mgr.smithi152.jkoscf (mgr.14182) 1288 : cluster [DBG] pgmap v844: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:19:38.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:37 smithi152 bash[16344]: audit 2024-01-24T03:19:36.223675+0000 mgr.smithi152.jkoscf (mgr.14182) 1287 : audit [DBG] from='client.15550 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:38.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:37 smithi152 bash[16344]: cluster 2024-01-24T03:19:36.757917+0000 mgr.smithi152.jkoscf (mgr.14182) 1288 : cluster [DBG] pgmap v844: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:19:39.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:39 smithi195 bash[19846]: cluster 2024-01-24T03:19:38.759382+0000 mgr.smithi152.jkoscf (mgr.14182) 1289 : cluster [DBG] pgmap v845: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:40.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:39 smithi152 bash[16344]: cluster 2024-01-24T03:19:38.759382+0000 mgr.smithi152.jkoscf (mgr.14182) 1289 : cluster [DBG] pgmap v845: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:41.137 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:19:41.137 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.735577Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\nDeploy daemon haproxy.nfs.foo.smithi152.sccowp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.737624Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:19:41.784 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:19:42.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:41 smithi152 bash[16344]: cluster 2024-01-24T03:19:40.761209+0000 mgr.smithi152.jkoscf (mgr.14182) 1290 : cluster [DBG] pgmap v846: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:42.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:41 smithi195 bash[19846]: cluster 2024-01-24T03:19:40.761209+0000 mgr.smithi152.jkoscf (mgr.14182) 1290 : cluster [DBG] pgmap v846: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:42.784 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:19:43.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:42 smithi152 bash[16344]: audit 2024-01-24T03:19:41.123151+0000 mgr.smithi152.jkoscf (mgr.14182) 1291 : audit [DBG] from='client.15554 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:43.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:42 smithi195 bash[19846]: audit 2024-01-24T03:19:41.123151+0000 mgr.smithi152.jkoscf (mgr.14182) 1291 : audit [DBG] from='client.15554 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:44.164 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:43 smithi152 bash[16344]: cluster 2024-01-24T03:19:42.762564+0000 mgr.smithi152.jkoscf (mgr.14182) 1292 : cluster [DBG] pgmap v847: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:44.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:43 smithi195 bash[19846]: cluster 2024-01-24T03:19:42.762564+0000 mgr.smithi152.jkoscf (mgr.14182) 1292 : cluster [DBG] pgmap v847: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:45.980 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:19:45.980 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.735577Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\nDeploy daemon haproxy.nfs.foo.smithi152.sccowp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.737624Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:19:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:45 smithi195 bash[19846]: cluster 2024-01-24T03:19:44.764097+0000 mgr.smithi152.jkoscf (mgr.14182) 1293 : cluster [DBG] pgmap v848: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:46.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:45 smithi152 bash[16344]: cluster 2024-01-24T03:19:44.764097+0000 mgr.smithi152.jkoscf (mgr.14182) 1293 : cluster [DBG] pgmap v848: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:46.668 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:19:47.669 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:19:48.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:47 smithi152 bash[16344]: audit 2024-01-24T03:19:45.963456+0000 mgr.smithi152.jkoscf (mgr.14182) 1294 : audit [DBG] from='client.15558 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:48.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:47 smithi152 bash[16344]: cluster 2024-01-24T03:19:46.765928+0000 mgr.smithi152.jkoscf (mgr.14182) 1295 : cluster [DBG] pgmap v849: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:19:48.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:47 smithi195 bash[19846]: audit 2024-01-24T03:19:45.963456+0000 mgr.smithi152.jkoscf (mgr.14182) 1294 : audit [DBG] from='client.15558 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:48.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:47 smithi195 bash[19846]: cluster 2024-01-24T03:19:46.765928+0000 mgr.smithi152.jkoscf (mgr.14182) 1295 : cluster [DBG] pgmap v849: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:19:49.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:49 smithi195 bash[19846]: cluster 2024-01-24T03:19:48.767503+0000 mgr.smithi152.jkoscf (mgr.14182) 1296 : cluster [DBG] pgmap v850: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:50.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:49 smithi152 bash[16344]: cluster 2024-01-24T03:19:48.767503+0000 mgr.smithi152.jkoscf (mgr.14182) 1296 : cluster [DBG] pgmap v850: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:50.885 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:19:50.886 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.735577Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\nDeploy daemon haproxy.nfs.foo.smithi152.sccowp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.737624Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:19:51.498 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:19:52.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:51 smithi152 bash[16344]: cluster 2024-01-24T03:19:50.769371+0000 mgr.smithi152.jkoscf (mgr.14182) 1297 : cluster [DBG] pgmap v851: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:52.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:51 smithi152 bash[16344]: audit 2024-01-24T03:19:50.873841+0000 mgr.smithi152.jkoscf (mgr.14182) 1298 : audit [DBG] from='client.15562 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:52.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:51 smithi195 bash[19846]: cluster 2024-01-24T03:19:50.769371+0000 mgr.smithi152.jkoscf (mgr.14182) 1297 : cluster [DBG] pgmap v851: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:52.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:51 smithi195 bash[19846]: audit 2024-01-24T03:19:50.873841+0000 mgr.smithi152.jkoscf (mgr.14182) 1298 : audit [DBG] from='client.15562 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:52.499 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:19:53.887 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:53 smithi152 bash[16344]: cluster 2024-01-24T03:19:52.770637+0000 mgr.smithi152.jkoscf (mgr.14182) 1299 : cluster [DBG] pgmap v852: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:54.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:53 smithi195 bash[19846]: cluster 2024-01-24T03:19:52.770637+0000 mgr.smithi152.jkoscf (mgr.14182) 1299 : cluster [DBG] pgmap v852: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:55.671 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:19:55.672 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.735577Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\nDeploy daemon haproxy.nfs.foo.smithi152.sccowp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.737624Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:19:56.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:55 smithi152 bash[16344]: cluster 2024-01-24T03:19:54.772196+0000 mgr.smithi152.jkoscf (mgr.14182) 1300 : cluster [DBG] pgmap v853: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:56.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:55 smithi195 bash[19846]: cluster 2024-01-24T03:19:54.772196+0000 mgr.smithi152.jkoscf (mgr.14182) 1300 : cluster [DBG] pgmap v853: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:19:56.307 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:19:57.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:56 smithi195 bash[19846]: audit 2024-01-24T03:19:55.658187+0000 mgr.smithi152.jkoscf (mgr.14182) 1301 : audit [DBG] from='client.15566 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:57.308 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:19:57.322 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:56 smithi152 bash[16344]: audit 2024-01-24T03:19:55.658187+0000 mgr.smithi152.jkoscf (mgr.14182) 1301 : audit [DBG] from='client.15566 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:19:58.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:57 smithi195 bash[19846]: cluster 2024-01-24T03:19:56.774032+0000 mgr.smithi152.jkoscf (mgr.14182) 1302 : cluster [DBG] pgmap v854: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:19:58.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:57 smithi152 bash[16344]: cluster 2024-01-24T03:19:56.774032+0000 mgr.smithi152.jkoscf (mgr.14182) 1302 : cluster [DBG] pgmap v854: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:19:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:19:59 smithi195 bash[19846]: cluster 2024-01-24T03:19:58.775586+0000 mgr.smithi152.jkoscf (mgr.14182) 1303 : cluster [DBG] pgmap v855: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:20:00.027 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:19:59 smithi152 bash[16344]: cluster 2024-01-24T03:19:58.775586+0000 mgr.smithi152.jkoscf (mgr.14182) 1303 : cluster [DBG] pgmap v855: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:20:00.467 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:20:00.467 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.735577Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\nDeploy daemon haproxy.nfs.foo.smithi152.sccowp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.737624Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:20:00.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:00 smithi152 bash[16344]: cluster 2024-01-24T03:20:00.000166+0000 mon.smithi152 (mon.0) 972 : cluster [WRN] overall HEALTH_WARN Failed to place 4 daemon(s) 2024-01-24T03:20:00.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:00 smithi195 bash[19846]: cluster 2024-01-24T03:20:00.000166+0000 mon.smithi152 (mon.0) 972 : cluster [WRN] overall HEALTH_WARN Failed to place 4 daemon(s) 2024-01-24T03:20:01.171 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:20:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:01 smithi195 bash[19846]: audit 2024-01-24T03:20:00.452879+0000 mgr.smithi152.jkoscf (mgr.14182) 1304 : audit [DBG] from='client.15570 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:01 smithi195 bash[19846]: cluster 2024-01-24T03:20:00.777516+0000 mgr.smithi152.jkoscf (mgr.14182) 1305 : cluster [DBG] pgmap v856: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:20:02.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:01 smithi152 bash[16344]: audit 2024-01-24T03:20:00.452879+0000 mgr.smithi152.jkoscf (mgr.14182) 1304 : audit [DBG] from='client.15570 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:02.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:01 smithi152 bash[16344]: cluster 2024-01-24T03:20:00.777516+0000 mgr.smithi152.jkoscf (mgr.14182) 1305 : cluster [DBG] pgmap v856: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:20:02.173 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:20:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:03 smithi195 bash[19846]: cluster 2024-01-24T03:20:02.778917+0000 mgr.smithi152.jkoscf (mgr.14182) 1306 : cluster [DBG] pgmap v857: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 0 B/s wr, 2 op/s 2024-01-24T03:20:04.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:03 smithi152 bash[16344]: cluster 2024-01-24T03:20:02.778917+0000 mgr.smithi152.jkoscf (mgr.14182) 1306 : cluster [DBG] pgmap v857: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 0 B/s wr, 2 op/s 2024-01-24T03:20:05.446 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:20:05.446 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.735577Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\nDeploy daemon haproxy.nfs.foo.smithi152.sccowp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.737624Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:20:06.033 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:20:06.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:05 smithi195 bash[19846]: cluster 2024-01-24T03:20:04.780660+0000 mgr.smithi152.jkoscf (mgr.14182) 1307 : cluster [DBG] pgmap v858: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 0 B/s wr, 20 op/s 2024-01-24T03:20:06.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:05 smithi152 bash[16344]: cluster 2024-01-24T03:20:04.780660+0000 mgr.smithi152.jkoscf (mgr.14182) 1307 : cluster [DBG] pgmap v858: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 0 B/s wr, 20 op/s 2024-01-24T03:20:07.035 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:20:07.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:06 smithi195 bash[19846]: audit 2024-01-24T03:20:05.431772+0000 mgr.smithi152.jkoscf (mgr.14182) 1308 : audit [DBG] from='client.15574 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:07.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:06 smithi152 bash[16344]: audit 2024-01-24T03:20:05.431772+0000 mgr.smithi152.jkoscf (mgr.14182) 1308 : audit [DBG] from='client.15574 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:08.149 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:07 smithi152 bash[16344]: cluster 2024-01-24T03:20:06.782423+0000 mgr.smithi152.jkoscf (mgr.14182) 1309 : cluster [DBG] pgmap v859: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 0 B/s wr, 62 op/s 2024-01-24T03:20:08.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:07 smithi195 bash[19846]: cluster 2024-01-24T03:20:06.782423+0000 mgr.smithi152.jkoscf (mgr.14182) 1309 : cluster [DBG] pgmap v859: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 0 B/s wr, 62 op/s 2024-01-24T03:20:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:09 smithi195 bash[19846]: cluster 2024-01-24T03:20:08.783824+0000 mgr.smithi152.jkoscf (mgr.14182) 1310 : cluster [DBG] pgmap v860: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 0 B/s wr, 62 op/s 2024-01-24T03:20:10.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:09 smithi152 bash[16344]: cluster 2024-01-24T03:20:08.783824+0000 mgr.smithi152.jkoscf (mgr.14182) 1310 : cluster [DBG] pgmap v860: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 0 B/s wr, 62 op/s 2024-01-24T03:20:10.226 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:20:10.226 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.735577Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\nDeploy daemon haproxy.nfs.foo.smithi152.sccowp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.737624Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:20:10.835 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:20:11.836 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:20:12.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:11 smithi195 bash[19846]: audit 2024-01-24T03:20:10.212203+0000 mgr.smithi152.jkoscf (mgr.14182) 1311 : audit [DBG] from='client.15578 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:12.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:11 smithi195 bash[19846]: cluster 2024-01-24T03:20:10.785736+0000 mgr.smithi152.jkoscf (mgr.14182) 1312 : cluster [DBG] pgmap v861: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 0 B/s wr, 62 op/s 2024-01-24T03:20:12.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:11 smithi152 bash[16344]: audit 2024-01-24T03:20:10.212203+0000 mgr.smithi152.jkoscf (mgr.14182) 1311 : audit [DBG] from='client.15578 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:12.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:11 smithi152 bash[16344]: cluster 2024-01-24T03:20:10.785736+0000 mgr.smithi152.jkoscf (mgr.14182) 1312 : cluster [DBG] pgmap v861: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 0 B/s wr, 62 op/s 2024-01-24T03:20:14.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:13 smithi195 bash[19846]: cluster 2024-01-24T03:20:12.787147+0000 mgr.smithi152.jkoscf (mgr.14182) 1313 : cluster [DBG] pgmap v862: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 0 B/s wr, 62 op/s 2024-01-24T03:20:14.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:13 smithi152 bash[16344]: cluster 2024-01-24T03:20:12.787147+0000 mgr.smithi152.jkoscf (mgr.14182) 1313 : cluster [DBG] pgmap v862: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 0 B/s wr, 62 op/s 2024-01-24T03:20:15.101 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:20:15.102 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.735577Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\nDeploy daemon haproxy.nfs.foo.smithi152.sccowp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.737624Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:20:15.715 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:20:16.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:15 smithi152 bash[16344]: cluster 2024-01-24T03:20:14.788752+0000 mgr.smithi152.jkoscf (mgr.14182) 1314 : cluster [DBG] pgmap v863: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-24T03:20:16.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:15 smithi195 bash[19846]: cluster 2024-01-24T03:20:14.788752+0000 mgr.smithi152.jkoscf (mgr.14182) 1314 : cluster [DBG] pgmap v863: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-24T03:20:16.717 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:20:17.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:16 smithi152 bash[16344]: audit 2024-01-24T03:20:15.092586+0000 mgr.smithi152.jkoscf (mgr.14182) 1315 : audit [DBG] from='client.15582 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:17.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:16 smithi152 bash[16344]: audit 2024-01-24T03:20:16.742620+0000 mon.smithi152 (mon.0) 973 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:20:17.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:16 smithi195 bash[19846]: audit 2024-01-24T03:20:15.092586+0000 mgr.smithi152.jkoscf (mgr.14182) 1315 : audit [DBG] from='client.15582 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:17.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:16 smithi195 bash[19846]: audit 2024-01-24T03:20:16.742620+0000 mon.smithi152 (mon.0) 973 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:20:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:17 smithi152 bash[16344]: cluster 2024-01-24T03:20:16.789951+0000 mgr.smithi152.jkoscf (mgr.14182) 1316 : cluster [DBG] pgmap v864: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 25 KiB/s rd, 0 B/s wr, 42 op/s 2024-01-24T03:20:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:17 smithi152 bash[16344]: audit 2024-01-24T03:20:17.070345+0000 mon.smithi152 (mon.0) 974 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:20:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:17 smithi152 bash[16344]: audit 2024-01-24T03:20:17.071936+0000 mon.smithi152 (mon.0) 975 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:20:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:17 smithi152 bash[16344]: audit 2024-01-24T03:20:17.080775+0000 mon.smithi152 (mon.0) 976 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:20:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:17 smithi152 bash[16344]: audit 2024-01-24T03:20:17.089651+0000 mon.smithi152 (mon.0) 977 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:20:18.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:17 smithi152 bash[16344]: audit 2024-01-24T03:20:17.103995+0000 mon.smithi152 (mon.0) 978 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:20:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:17 smithi195 bash[19846]: cluster 2024-01-24T03:20:16.789951+0000 mgr.smithi152.jkoscf (mgr.14182) 1316 : cluster [DBG] pgmap v864: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 25 KiB/s rd, 0 B/s wr, 42 op/s 2024-01-24T03:20:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:17 smithi195 bash[19846]: audit 2024-01-24T03:20:17.070345+0000 mon.smithi152 (mon.0) 974 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:20:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:17 smithi195 bash[19846]: audit 2024-01-24T03:20:17.071936+0000 mon.smithi152 (mon.0) 975 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:20:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:17 smithi195 bash[19846]: audit 2024-01-24T03:20:17.080775+0000 mon.smithi152 (mon.0) 976 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:20:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:17 smithi195 bash[19846]: audit 2024-01-24T03:20:17.089651+0000 mon.smithi152 (mon.0) 977 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:20:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:17 smithi195 bash[19846]: audit 2024-01-24T03:20:17.103995+0000 mon.smithi152 (mon.0) 978 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:20:19.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:18 smithi195 bash[19846]: cluster 2024-01-24T03:20:17.081752+0000 mgr.smithi152.jkoscf (mgr.14182) 1317 : cluster [DBG] pgmap v865: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:20:19.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:18 smithi195 bash[19846]: cephadm 2024-01-24T03:20:17.108360+0000 mgr.smithi152.jkoscf (mgr.14182) 1318 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.axuwnf on smithi195 2024-01-24T03:20:19.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:18 smithi195 bash[19846]: cluster 2024-01-24T03:20:18.077364+0000 mon.smithi152 (mon.0) 979 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:20:19.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:18 smithi195 bash[19846]: cluster 2024-01-24T03:20:18.077458+0000 mon.smithi152 (mon.0) 980 : cluster [INF] Cluster is now healthy 2024-01-24T03:20:19.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:18 smithi152 bash[16344]: cluster 2024-01-24T03:20:17.081752+0000 mgr.smithi152.jkoscf (mgr.14182) 1317 : cluster [DBG] pgmap v865: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:20:19.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:18 smithi152 bash[16344]: cephadm 2024-01-24T03:20:17.108360+0000 mgr.smithi152.jkoscf (mgr.14182) 1318 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.axuwnf on smithi195 2024-01-24T03:20:19.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:18 smithi152 bash[16344]: cluster 2024-01-24T03:20:18.077364+0000 mon.smithi152 (mon.0) 979 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:20:19.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:18 smithi152 bash[16344]: cluster 2024-01-24T03:20:18.077458+0000 mon.smithi152 (mon.0) 980 : cluster [INF] Cluster is now healthy 2024-01-24T03:20:20.065 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:20:20.065 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:18:08.729093Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.dimoyw on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:12.883195Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.smjmns on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-smjmns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.smjmns\nDeploy daemon haproxy.nfs.foo.smithi195.smjmns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.735577Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.sccowp on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-sccowp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.sccowp\nDeploy daemon haproxy.nfs.foo.smithi152.sccowp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:19:16.737624Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.gjejre on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:20:20.724 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:20:21.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:20 smithi152 bash[16344]: cluster 2024-01-24T03:20:19.083137+0000 mgr.smithi152.jkoscf (mgr.14182) 1319 : cluster [DBG] pgmap v866: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:20:21.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:20 smithi195 bash[19846]: cluster 2024-01-24T03:20:19.083137+0000 mgr.smithi152.jkoscf (mgr.14182) 1319 : cluster [DBG] pgmap v866: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:20:21.726 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:20:22.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: audit 2024-01-24T03:20:20.049592+0000 mgr.smithi152.jkoscf (mgr.14182) 1320 : audit [DBG] from='client.15586 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: cephadm 2024-01-24T03:20:20.927492+0000 mgr.smithi152.jkoscf (mgr.14182) 1321 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf 2024-01-24T03:20:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:20:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf 2024-01-24T03:20:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:20:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.axuwnf ... 2024-01-24T03:20:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:20:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:20:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:20:22.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.axuwnf ... 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:20:22.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: cephadm 2024-01-24T03:20:20.927993+0000 mgr.smithi152.jkoscf (mgr.14182) 1322 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: audit 2024-01-24T03:20:20.928605+0000 mon.smithi152 (mon.0) 981 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.axuwnf"}]: dispatch 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: cephadm 2024-01-24T03:20:20.930341+0000 mgr.smithi152.jkoscf (mgr.14182) 1323 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.axuwnf ... 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:20:22.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:20:22.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:20:22.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:21 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:22.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: audit 2024-01-24T03:20:20.049592+0000 mgr.smithi152.jkoscf (mgr.14182) 1320 : audit [DBG] from='client.15586 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:22.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: cephadm 2024-01-24T03:20:20.927492+0000 mgr.smithi152.jkoscf (mgr.14182) 1321 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf 2024-01-24T03:20:22.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:20:22.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf 2024-01-24T03:20:22.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:20:22.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.axuwnf ... 2024-01-24T03:20:22.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:22.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:20:22.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:20:22.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:20:22.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:22.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.axuwnf ... 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:20:22.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: cephadm 2024-01-24T03:20:20.927993+0000 mgr.smithi152.jkoscf (mgr.14182) 1322 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: audit 2024-01-24T03:20:20.928605+0000 mon.smithi152 (mon.0) 981 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.axuwnf"}]: dispatch 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: cephadm 2024-01-24T03:20:20.930341+0000 mgr.smithi152.jkoscf (mgr.14182) 1323 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.axuwnf ... 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:20:22.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:20:22.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:20:22.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:21 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:23.137 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:22 smithi152 bash[16344]: cephadm 2024-01-24T03:20:20.935428+0000 mgr.smithi152.jkoscf (mgr.14182) 1324 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.brrsta on smithi152 2024-01-24T03:20:23.137 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:22 smithi152 bash[16344]: cluster 2024-01-24T03:20:21.084570+0000 mgr.smithi152.jkoscf (mgr.14182) 1325 : cluster [DBG] pgmap v867: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:20:23.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:22 smithi195 bash[19846]: cephadm 2024-01-24T03:20:20.935428+0000 mgr.smithi152.jkoscf (mgr.14182) 1324 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.brrsta on smithi152 2024-01-24T03:20:23.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:22 smithi195 bash[19846]: cluster 2024-01-24T03:20:21.084570+0000 mgr.smithi152.jkoscf (mgr.14182) 1325 : cluster [DBG] pgmap v867: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:20:24.907 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:20:24.908 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:20:24.982 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:24 smithi152 bash[16344]: cluster 2024-01-24T03:20:23.085734+0000 mgr.smithi152.jkoscf (mgr.14182) 1326 : cluster [DBG] pgmap v868: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:20:24.982 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:24 smithi152 bash[16344]: audit 2024-01-24T03:20:24.304397+0000 mon.smithi152 (mon.0) 982 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:20:24.983 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:24 smithi152 bash[16344]: audit 2024-01-24T03:20:24.771863+0000 mon.smithi152 (mon.0) 983 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.brrsta"}]: dispatch 2024-01-24T03:20:25.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:24 smithi195 bash[19846]: cluster 2024-01-24T03:20:23.085734+0000 mgr.smithi152.jkoscf (mgr.14182) 1326 : cluster [DBG] pgmap v868: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:20:25.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:24 smithi195 bash[19846]: audit 2024-01-24T03:20:24.304397+0000 mon.smithi152 (mon.0) 982 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:20:25.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:24 smithi195 bash[19846]: audit 2024-01-24T03:20:24.771863+0000 mon.smithi152 (mon.0) 983 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.brrsta"}]: dispatch 2024-01-24T03:20:25.642 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:20:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: cephadm 2024-01-24T03:20:24.771036+0000 mgr.smithi152.jkoscf (mgr.14182) 1327 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta 2024-01-24T03:20:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:20:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta 2024-01-24T03:20:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:20:26.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.brrsta ... 2024-01-24T03:20:26.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:26.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:20:26.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:20:26.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:20:26.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:26.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:20:26.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:20:26.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:20:26.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:20:26.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:20:26.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta 2024-01-24T03:20:26.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:20:26.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta 2024-01-24T03:20:26.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:20:26.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.brrsta ... 2024-01-24T03:20:26.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:26.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:20:26.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:20:26.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:20:26.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:26.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: cephadm 2024-01-24T03:20:24.771393+0000 mgr.smithi152.jkoscf (mgr.14182) 1328 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: cephadm 2024-01-24T03:20:24.772992+0000 mgr.smithi152.jkoscf (mgr.14182) 1329 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta 2024-01-24T03:20:26.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:20:26.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta 2024-01-24T03:20:26.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:20:26.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.brrsta ... 2024-01-24T03:20:26.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:26.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:20:26.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:20:26.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:20:26.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:26.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: cephadm 2024-01-24T03:20:24.777473+0000 mgr.smithi152.jkoscf (mgr.14182) 1330 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:20:26.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: cephadm 2024-01-24T03:20:24.781451+0000 mgr.smithi152.jkoscf (mgr.14182) 1331 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:20:26.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: cluster 2024-01-24T03:20:24.782752+0000 mgr.smithi152.jkoscf (mgr.14182) 1332 : cluster [DBG] pgmap v869: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:20:26.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: audit 2024-01-24T03:20:24.898221+0000 mgr.smithi152.jkoscf (mgr.14182) 1333 : audit [DBG] from='client.15590 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:26.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:25 smithi195 bash[19846]: cluster 2024-01-24T03:20:25.300309+0000 mon.smithi152 (mon.0) 984 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:20:26.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: cephadm 2024-01-24T03:20:24.771036+0000 mgr.smithi152.jkoscf (mgr.14182) 1327 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.brrsta ... 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:20:26.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.brrsta ... 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:20:26.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: cephadm 2024-01-24T03:20:24.771393+0000 mgr.smithi152.jkoscf (mgr.14182) 1328 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: cephadm 2024-01-24T03:20:24.772992+0000 mgr.smithi152.jkoscf (mgr.14182) 1329 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.brrsta ... 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: cephadm 2024-01-24T03:20:24.777473+0000 mgr.smithi152.jkoscf (mgr.14182) 1330 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:20:26.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: cephadm 2024-01-24T03:20:24.781451+0000 mgr.smithi152.jkoscf (mgr.14182) 1331 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:20:26.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: cluster 2024-01-24T03:20:24.782752+0000 mgr.smithi152.jkoscf (mgr.14182) 1332 : cluster [DBG] pgmap v869: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:20:26.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: audit 2024-01-24T03:20:24.898221+0000 mgr.smithi152.jkoscf (mgr.14182) 1333 : audit [DBG] from='client.15590 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:26.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:25 smithi152 bash[16344]: cluster 2024-01-24T03:20:25.300309+0000 mon.smithi152 (mon.0) 984 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:20:26.643 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:20:28.089 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:27 smithi152 bash[16344]: cluster 2024-01-24T03:20:26.784475+0000 mgr.smithi152.jkoscf (mgr.14182) 1334 : cluster [DBG] pgmap v870: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:20:28.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:27 smithi195 bash[19846]: cluster 2024-01-24T03:20:26.784475+0000 mgr.smithi152.jkoscf (mgr.14182) 1334 : cluster [DBG] pgmap v870: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:20:29.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:28 smithi195 bash[19846]: audit 2024-01-24T03:20:27.972780+0000 mon.smithi152 (mon.0) 985 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:20:29.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:28 smithi195 bash[19846]: cluster 2024-01-24T03:20:28.785912+0000 mgr.smithi152.jkoscf (mgr.14182) 1335 : cluster [DBG] pgmap v871: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:20:29.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:28 smithi152 bash[16344]: audit 2024-01-24T03:20:27.972780+0000 mon.smithi152 (mon.0) 985 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:20:29.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:28 smithi152 bash[16344]: cluster 2024-01-24T03:20:28.785912+0000 mgr.smithi152.jkoscf (mgr.14182) 1335 : cluster [DBG] pgmap v871: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:20:29.853 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:20:29.853 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:20:30.457 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:20:30.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:30 smithi152 bash[16344]: audit 2024-01-24T03:20:29.836259+0000 mgr.smithi152.jkoscf (mgr.14182) 1336 : audit [DBG] from='client.15594 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:30.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:30 smithi195 bash[19846]: audit 2024-01-24T03:20:29.836259+0000 mgr.smithi152.jkoscf (mgr.14182) 1336 : audit [DBG] from='client.15594 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:31.459 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:20:31.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:31 smithi152 bash[16344]: cluster 2024-01-24T03:20:30.787824+0000 mgr.smithi152.jkoscf (mgr.14182) 1337 : cluster [DBG] pgmap v872: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:20:31.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:31 smithi195 bash[19846]: cluster 2024-01-24T03:20:30.787824+0000 mgr.smithi152.jkoscf (mgr.14182) 1337 : cluster [DBG] pgmap v872: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:20:34.106 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:33 smithi152 bash[16344]: cluster 2024-01-24T03:20:32.789168+0000 mgr.smithi152.jkoscf (mgr.14182) 1338 : cluster [DBG] pgmap v873: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:20:34.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:33 smithi195 bash[19846]: cluster 2024-01-24T03:20:32.789168+0000 mgr.smithi152.jkoscf (mgr.14182) 1338 : cluster [DBG] pgmap v873: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:20:34.553 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:20:34.553 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:20:35.159 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:20:36.160 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:20:36.172 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:35 smithi152 bash[16344]: audit 2024-01-24T03:20:34.536677+0000 mgr.smithi152.jkoscf (mgr.14182) 1339 : audit [DBG] from='client.15598 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:36.172 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:35 smithi152 bash[16344]: cluster 2024-01-24T03:20:34.790985+0000 mgr.smithi152.jkoscf (mgr.14182) 1340 : cluster [DBG] pgmap v874: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:20:36.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:35 smithi195 bash[19846]: audit 2024-01-24T03:20:34.536677+0000 mgr.smithi152.jkoscf (mgr.14182) 1339 : audit [DBG] from='client.15598 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:36.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:35 smithi195 bash[19846]: cluster 2024-01-24T03:20:34.790985+0000 mgr.smithi152.jkoscf (mgr.14182) 1340 : cluster [DBG] pgmap v874: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:20:38.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:37 smithi195 bash[19846]: cluster 2024-01-24T03:20:36.792541+0000 mgr.smithi152.jkoscf (mgr.14182) 1341 : cluster [DBG] pgmap v875: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:20:38.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:37 smithi152 bash[16344]: cluster 2024-01-24T03:20:36.792541+0000 mgr.smithi152.jkoscf (mgr.14182) 1341 : cluster [DBG] pgmap v875: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:20:39.339 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:20:39.339 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:20:39.952 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:39 smithi152 bash[16344]: cluster 2024-01-24T03:20:38.793923+0000 mgr.smithi152.jkoscf (mgr.14182) 1342 : cluster [DBG] pgmap v876: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:20:39.952 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:39 smithi152 bash[16344]: audit 2024-01-24T03:20:39.304505+0000 mon.smithi152 (mon.0) 986 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:20:39.954 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:20:39.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:39 smithi195 bash[19846]: cluster 2024-01-24T03:20:38.793923+0000 mgr.smithi152.jkoscf (mgr.14182) 1342 : cluster [DBG] pgmap v876: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:20:39.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:39 smithi195 bash[19846]: audit 2024-01-24T03:20:39.304505+0000 mon.smithi152 (mon.0) 986 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:20:40.954 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:20:40.967 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:40 smithi152 bash[16344]: audit 2024-01-24T03:20:39.311633+0000 mgr.smithi152.jkoscf (mgr.14182) 1343 : audit [DBG] from='client.15602 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:40.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:40 smithi195 bash[19846]: audit 2024-01-24T03:20:39.311633+0000 mgr.smithi152.jkoscf (mgr.14182) 1343 : audit [DBG] from='client.15602 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:41.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:41 smithi195 bash[19846]: cluster 2024-01-24T03:20:40.795817+0000 mgr.smithi152.jkoscf (mgr.14182) 1344 : cluster [DBG] pgmap v877: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:20:42.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:41 smithi152 bash[16344]: cluster 2024-01-24T03:20:40.795817+0000 mgr.smithi152.jkoscf (mgr.14182) 1344 : cluster [DBG] pgmap v877: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:20:44.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:43 smithi195 bash[19846]: cluster 2024-01-24T03:20:42.797157+0000 mgr.smithi152.jkoscf (mgr.14182) 1345 : cluster [DBG] pgmap v878: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:20:44.303 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:20:44.303 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:20:44.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:43 smithi152 bash[16344]: cluster 2024-01-24T03:20:42.797157+0000 mgr.smithi152.jkoscf (mgr.14182) 1345 : cluster [DBG] pgmap v878: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:20:44.892 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:20:45.893 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:20:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:45 smithi195 bash[19846]: audit 2024-01-24T03:20:44.291300+0000 mgr.smithi152.jkoscf (mgr.14182) 1346 : audit [DBG] from='client.15606 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:45 smithi195 bash[19846]: cluster 2024-01-24T03:20:44.798951+0000 mgr.smithi152.jkoscf (mgr.14182) 1347 : cluster [DBG] pgmap v879: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 0 B/s wr, 2 op/s 2024-01-24T03:20:46.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:45 smithi152 bash[16344]: audit 2024-01-24T03:20:44.291300+0000 mgr.smithi152.jkoscf (mgr.14182) 1346 : audit [DBG] from='client.15606 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:46.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:45 smithi152 bash[16344]: cluster 2024-01-24T03:20:44.798951+0000 mgr.smithi152.jkoscf (mgr.14182) 1347 : cluster [DBG] pgmap v879: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 0 B/s wr, 2 op/s 2024-01-24T03:20:48.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:47 smithi195 bash[19846]: cluster 2024-01-24T03:20:46.800520+0000 mgr.smithi152.jkoscf (mgr.14182) 1348 : cluster [DBG] pgmap v880: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:20:48.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:47 smithi152 bash[16344]: cluster 2024-01-24T03:20:46.800520+0000 mgr.smithi152.jkoscf (mgr.14182) 1348 : cluster [DBG] pgmap v880: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:20:49.117 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:20:49.117 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:20:49.715 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:20:49.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:49 smithi195 bash[19846]: cluster 2024-01-24T03:20:48.801962+0000 mgr.smithi152.jkoscf (mgr.14182) 1349 : cluster [DBG] pgmap v881: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:20:50.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:49 smithi152 bash[16344]: cluster 2024-01-24T03:20:48.801962+0000 mgr.smithi152.jkoscf (mgr.14182) 1349 : cluster [DBG] pgmap v881: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:20:50.716 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:20:50.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:50 smithi195 bash[19846]: audit 2024-01-24T03:20:49.102583+0000 mgr.smithi152.jkoscf (mgr.14182) 1350 : audit [DBG] from='client.15610 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:51.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:50 smithi152 bash[16344]: audit 2024-01-24T03:20:49.102583+0000 mgr.smithi152.jkoscf (mgr.14182) 1350 : audit [DBG] from='client.15610 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:51.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:51 smithi195 bash[19846]: cluster 2024-01-24T03:20:50.803724+0000 mgr.smithi152.jkoscf (mgr.14182) 1351 : cluster [DBG] pgmap v882: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:20:52.066 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:51 smithi152 bash[16344]: cluster 2024-01-24T03:20:50.803724+0000 mgr.smithi152.jkoscf (mgr.14182) 1351 : cluster [DBG] pgmap v882: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:20:53.882 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:20:53.882 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:20:54.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:53 smithi195 bash[19846]: cluster 2024-01-24T03:20:52.805236+0000 mgr.smithi152.jkoscf (mgr.14182) 1352 : cluster [DBG] pgmap v883: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:20:54.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:53 smithi152 bash[16344]: cluster 2024-01-24T03:20:52.805236+0000 mgr.smithi152.jkoscf (mgr.14182) 1352 : cluster [DBG] pgmap v883: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:20:54.490 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:20:55.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:54 smithi195 bash[19846]: audit 2024-01-24T03:20:53.868501+0000 mgr.smithi152.jkoscf (mgr.14182) 1353 : audit [DBG] from='client.15614 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:55.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:54 smithi152 bash[16344]: audit 2024-01-24T03:20:53.868501+0000 mgr.smithi152.jkoscf (mgr.14182) 1353 : audit [DBG] from='client.15614 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:55.491 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:20:56.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:55 smithi195 bash[19846]: cluster 2024-01-24T03:20:54.807211+0000 mgr.smithi152.jkoscf (mgr.14182) 1354 : cluster [DBG] pgmap v884: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:20:56.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:55 smithi152 bash[16344]: cluster 2024-01-24T03:20:54.807211+0000 mgr.smithi152.jkoscf (mgr.14182) 1354 : cluster [DBG] pgmap v884: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-24T03:20:58.234 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:57 smithi152 bash[16344]: cluster 2024-01-24T03:20:56.808983+0000 mgr.smithi152.jkoscf (mgr.14182) 1355 : cluster [DBG] pgmap v885: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 0 B/s wr, 4 op/s 2024-01-24T03:20:58.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:57 smithi195 bash[19846]: cluster 2024-01-24T03:20:56.808983+0000 mgr.smithi152.jkoscf (mgr.14182) 1355 : cluster [DBG] pgmap v885: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 0 B/s wr, 4 op/s 2024-01-24T03:20:58.653 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:20:58.653 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:20:59.309 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:20:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:59 smithi195 bash[19846]: audit 2024-01-24T03:20:58.640304+0000 mgr.smithi152.jkoscf (mgr.14182) 1356 : audit [DBG] from='client.15618 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:20:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:20:59 smithi195 bash[19846]: cluster 2024-01-24T03:20:58.810853+0000 mgr.smithi152.jkoscf (mgr.14182) 1357 : cluster [DBG] pgmap v886: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:59 smithi152 bash[16344]: audit 2024-01-24T03:20:58.640304+0000 mgr.smithi152.jkoscf (mgr.14182) 1356 : audit [DBG] from='client.15618 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:20:59 smithi152 bash[16344]: cluster 2024-01-24T03:20:58.810853+0000 mgr.smithi152.jkoscf (mgr.14182) 1357 : cluster [DBG] pgmap v886: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:00.310 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:21:02.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:01 smithi152 bash[16344]: cluster 2024-01-24T03:21:00.812694+0000 mgr.smithi152.jkoscf (mgr.14182) 1358 : cluster [DBG] pgmap v887: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:02.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:01 smithi195 bash[19846]: cluster 2024-01-24T03:21:00.812694+0000 mgr.smithi152.jkoscf (mgr.14182) 1358 : cluster [DBG] pgmap v887: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:03.499 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:21:03.499 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:21:04.071 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:21:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:03 smithi195 bash[19846]: cluster 2024-01-24T03:21:02.814087+0000 mgr.smithi152.jkoscf (mgr.14182) 1359 : cluster [DBG] pgmap v888: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:04.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:03 smithi152 bash[16344]: cluster 2024-01-24T03:21:02.814087+0000 mgr.smithi152.jkoscf (mgr.14182) 1359 : cluster [DBG] pgmap v888: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:05.072 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:21:05.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:04 smithi195 bash[19846]: audit 2024-01-24T03:21:03.482846+0000 mgr.smithi152.jkoscf (mgr.14182) 1360 : audit [DBG] from='client.15622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:05.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:04 smithi152 bash[16344]: audit 2024-01-24T03:21:03.482846+0000 mgr.smithi152.jkoscf (mgr.14182) 1360 : audit [DBG] from='client.15622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:06.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:05 smithi195 bash[19846]: cluster 2024-01-24T03:21:04.815895+0000 mgr.smithi152.jkoscf (mgr.14182) 1361 : cluster [DBG] pgmap v889: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:06.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:05 smithi152 bash[16344]: cluster 2024-01-24T03:21:04.815895+0000 mgr.smithi152.jkoscf (mgr.14182) 1361 : cluster [DBG] pgmap v889: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:08.206 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:07 smithi152 bash[16344]: cluster 2024-01-24T03:21:06.817751+0000 mgr.smithi152.jkoscf (mgr.14182) 1362 : cluster [DBG] pgmap v890: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:21:08.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:07 smithi195 bash[19846]: cluster 2024-01-24T03:21:06.817751+0000 mgr.smithi152.jkoscf (mgr.14182) 1362 : cluster [DBG] pgmap v890: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:21:08.572 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:21:08.572 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:21:09.237 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:21:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:09 smithi195 bash[19846]: audit 2024-01-24T03:21:08.555433+0000 mgr.smithi152.jkoscf (mgr.14182) 1363 : audit [DBG] from='client.15626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:09 smithi195 bash[19846]: cluster 2024-01-24T03:21:08.819364+0000 mgr.smithi152.jkoscf (mgr.14182) 1364 : cluster [DBG] pgmap v891: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:10.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:09 smithi152 bash[16344]: audit 2024-01-24T03:21:08.555433+0000 mgr.smithi152.jkoscf (mgr.14182) 1363 : audit [DBG] from='client.15626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:10.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:09 smithi152 bash[16344]: cluster 2024-01-24T03:21:08.819364+0000 mgr.smithi152.jkoscf (mgr.14182) 1364 : cluster [DBG] pgmap v891: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:10.237 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:21:12.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:11 smithi152 bash[16344]: cluster 2024-01-24T03:21:10.821094+0000 mgr.smithi152.jkoscf (mgr.14182) 1365 : cluster [DBG] pgmap v892: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:12.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:11 smithi195 bash[19846]: cluster 2024-01-24T03:21:10.821094+0000 mgr.smithi152.jkoscf (mgr.14182) 1365 : cluster [DBG] pgmap v892: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:13.536 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:21:13.536 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:21:14.101 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:21:14.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:13 smithi195 bash[19846]: cluster 2024-01-24T03:21:12.822247+0000 mgr.smithi152.jkoscf (mgr.14182) 1366 : cluster [DBG] pgmap v893: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:14.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:13 smithi152 bash[16344]: cluster 2024-01-24T03:21:12.822247+0000 mgr.smithi152.jkoscf (mgr.14182) 1366 : cluster [DBG] pgmap v893: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:15.102 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:21:15.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:14 smithi195 bash[19846]: audit 2024-01-24T03:21:13.524920+0000 mgr.smithi152.jkoscf (mgr.14182) 1367 : audit [DBG] from='client.15630 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:15.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:14 smithi152 bash[16344]: audit 2024-01-24T03:21:13.524920+0000 mgr.smithi152.jkoscf (mgr.14182) 1367 : audit [DBG] from='client.15630 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:16.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:15 smithi195 bash[19846]: cluster 2024-01-24T03:21:14.824022+0000 mgr.smithi152.jkoscf (mgr.14182) 1368 : cluster [DBG] pgmap v894: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:16.280 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:15 smithi152 bash[16344]: cluster 2024-01-24T03:21:14.824022+0000 mgr.smithi152.jkoscf (mgr.14182) 1368 : cluster [DBG] pgmap v894: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:17 smithi195 bash[19846]: cluster 2024-01-24T03:21:16.825842+0000 mgr.smithi152.jkoscf (mgr.14182) 1369 : cluster [DBG] pgmap v895: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:21:18.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:17 smithi152 bash[16344]: cluster 2024-01-24T03:21:16.825842+0000 mgr.smithi152.jkoscf (mgr.14182) 1369 : cluster [DBG] pgmap v895: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:21:18.347 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:21:18.347 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:21:18.938 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:21:19.939 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:21:19.952 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:19 smithi152 bash[16344]: audit 2024-01-24T03:21:18.331105+0000 mgr.smithi152.jkoscf (mgr.14182) 1370 : audit [DBG] from='client.15634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:19.952 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:19 smithi152 bash[16344]: cluster 2024-01-24T03:21:18.827376+0000 mgr.smithi152.jkoscf (mgr.14182) 1371 : cluster [DBG] pgmap v896: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:19.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:19 smithi195 bash[19846]: audit 2024-01-24T03:21:18.331105+0000 mgr.smithi152.jkoscf (mgr.14182) 1370 : audit [DBG] from='client.15634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:19.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:19 smithi195 bash[19846]: cluster 2024-01-24T03:21:18.827376+0000 mgr.smithi152.jkoscf (mgr.14182) 1371 : cluster [DBG] pgmap v896: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:22.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:21 smithi195 bash[19846]: cluster 2024-01-24T03:21:20.829087+0000 mgr.smithi152.jkoscf (mgr.14182) 1372 : cluster [DBG] pgmap v897: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:22.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:21 smithi152 bash[16344]: cluster 2024-01-24T03:21:20.829087+0000 mgr.smithi152.jkoscf (mgr.14182) 1372 : cluster [DBG] pgmap v897: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:23.138 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:21:23.139 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:21:23.735 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:21:24.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:23 smithi152 bash[16344]: cluster 2024-01-24T03:21:22.830430+0000 mgr.smithi152.jkoscf (mgr.14182) 1373 : cluster [DBG] pgmap v898: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:24.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:23 smithi195 bash[19846]: cluster 2024-01-24T03:21:22.830430+0000 mgr.smithi152.jkoscf (mgr.14182) 1373 : cluster [DBG] pgmap v898: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:24.736 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:21:25.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:24 smithi152 bash[16344]: audit 2024-01-24T03:21:23.122887+0000 mgr.smithi152.jkoscf (mgr.14182) 1374 : audit [DBG] from='client.15638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:25.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:24 smithi152 bash[16344]: audit 2024-01-24T03:21:24.785061+0000 mon.smithi152 (mon.0) 987 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:21:25.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:24 smithi195 bash[19846]: audit 2024-01-24T03:21:23.122887+0000 mgr.smithi152.jkoscf (mgr.14182) 1374 : audit [DBG] from='client.15638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:25.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:24 smithi195 bash[19846]: audit 2024-01-24T03:21:24.785061+0000 mon.smithi152 (mon.0) 987 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:21:26.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:25 smithi152 bash[16344]: cluster 2024-01-24T03:21:24.832217+0000 mgr.smithi152.jkoscf (mgr.14182) 1375 : cluster [DBG] pgmap v899: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:26.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:25 smithi152 bash[16344]: audit 2024-01-24T03:21:25.115359+0000 mon.smithi152 (mon.0) 988 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:21:26.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:25 smithi152 bash[16344]: audit 2024-01-24T03:21:25.116751+0000 mon.smithi152 (mon.0) 989 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:21:26.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:25 smithi152 bash[16344]: audit 2024-01-24T03:21:25.126679+0000 mon.smithi152 (mon.0) 990 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:21:26.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:25 smithi152 bash[16344]: audit 2024-01-24T03:21:25.132943+0000 mon.smithi152 (mon.0) 991 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:21:26.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:25 smithi152 bash[16344]: audit 2024-01-24T03:21:25.149474+0000 mon.smithi152 (mon.0) 992 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:21:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:25 smithi195 bash[19846]: cluster 2024-01-24T03:21:24.832217+0000 mgr.smithi152.jkoscf (mgr.14182) 1375 : cluster [DBG] pgmap v899: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:25 smithi195 bash[19846]: audit 2024-01-24T03:21:25.115359+0000 mon.smithi152 (mon.0) 988 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:21:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:25 smithi195 bash[19846]: audit 2024-01-24T03:21:25.116751+0000 mon.smithi152 (mon.0) 989 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:21:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:25 smithi195 bash[19846]: audit 2024-01-24T03:21:25.126679+0000 mon.smithi152 (mon.0) 990 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:21:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:25 smithi195 bash[19846]: audit 2024-01-24T03:21:25.132943+0000 mon.smithi152 (mon.0) 991 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:21:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:25 smithi195 bash[19846]: audit 2024-01-24T03:21:25.149474+0000 mon.smithi152 (mon.0) 992 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:21:27.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:26 smithi195 bash[19846]: cluster 2024-01-24T03:21:25.127613+0000 mgr.smithi152.jkoscf (mgr.14182) 1376 : cluster [DBG] pgmap v900: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:21:27.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:26 smithi195 bash[19846]: cephadm 2024-01-24T03:21:25.152889+0000 mgr.smithi152.jkoscf (mgr.14182) 1377 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.urvalo on smithi195 2024-01-24T03:21:27.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:26 smithi195 bash[19846]: cluster 2024-01-24T03:21:26.122919+0000 mon.smithi152 (mon.0) 993 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:21:27.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:26 smithi195 bash[19846]: cluster 2024-01-24T03:21:26.122988+0000 mon.smithi152 (mon.0) 994 : cluster [INF] Cluster is now healthy 2024-01-24T03:21:27.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:26 smithi152 bash[16344]: cluster 2024-01-24T03:21:25.127613+0000 mgr.smithi152.jkoscf (mgr.14182) 1376 : cluster [DBG] pgmap v900: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:21:27.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:26 smithi152 bash[16344]: cephadm 2024-01-24T03:21:25.152889+0000 mgr.smithi152.jkoscf (mgr.14182) 1377 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.urvalo on smithi195 2024-01-24T03:21:27.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:26 smithi152 bash[16344]: cluster 2024-01-24T03:21:26.122919+0000 mon.smithi152 (mon.0) 993 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:21:27.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:26 smithi152 bash[16344]: cluster 2024-01-24T03:21:26.122988+0000 mon.smithi152 (mon.0) 994 : cluster [INF] Cluster is now healthy 2024-01-24T03:21:28.080 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:21:28.081 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:19:16.739190Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.abfpez on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:20.930040Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.axuwnf on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-axuwnf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.axuwnf\nDeploy daemon haproxy.nfs.foo.smithi195.axuwnf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.772829Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.brrsta on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-brrsta\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.brrsta\nDeploy daemon haproxy.nfs.foo.smithi152.brrsta ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:20:24.777261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.fbhkbm on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:21:28.681 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:21:29.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:28 smithi152 bash[16344]: cluster 2024-01-24T03:21:27.129174+0000 mgr.smithi152.jkoscf (mgr.14182) 1378 : cluster [DBG] pgmap v901: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:21:29.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:28 smithi195 bash[19846]: cluster 2024-01-24T03:21:27.129174+0000 mgr.smithi152.jkoscf (mgr.14182) 1378 : cluster [DBG] pgmap v901: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:21:29.682 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:21:30.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: audit 2024-01-24T03:21:28.066178+0000 mgr.smithi152.jkoscf (mgr.14182) 1379 : audit [DBG] from='client.15642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: cephadm 2024-01-24T03:21:28.917545+0000 mgr.smithi152.jkoscf (mgr.14182) 1380 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo 2024-01-24T03:21:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:21:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo 2024-01-24T03:21:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:21:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.urvalo ... 2024-01-24T03:21:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:21:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:21:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:21:30.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.urvalo ... 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:21:30.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: cephadm 2024-01-24T03:21:28.917825+0000 mgr.smithi152.jkoscf (mgr.14182) 1381 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: audit 2024-01-24T03:21:28.918207+0000 mon.smithi152 (mon.0) 995 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.urvalo"}]: dispatch 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: cephadm 2024-01-24T03:21:28.919475+0000 mgr.smithi152.jkoscf (mgr.14182) 1382 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.urvalo ... 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:21:30.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:21:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:21:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:30.087 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:29 smithi152 bash[16344]: cephadm 2024-01-24T03:21:28.922725+0000 mgr.smithi152.jkoscf (mgr.14182) 1383 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.toazfa on smithi152 2024-01-24T03:21:30.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: audit 2024-01-24T03:21:28.066178+0000 mgr.smithi152.jkoscf (mgr.14182) 1379 : audit [DBG] from='client.15642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: cephadm 2024-01-24T03:21:28.917545+0000 mgr.smithi152.jkoscf (mgr.14182) 1380 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.urvalo ... 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:21:30.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:21:30.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:21:30.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:21:30.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:21:30.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo 2024-01-24T03:21:30.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:21:30.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo 2024-01-24T03:21:30.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:21:30.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.urvalo ... 2024-01-24T03:21:30.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:30.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:21:30.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:21:30.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:21:30.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:30.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: cephadm 2024-01-24T03:21:28.917825+0000 mgr.smithi152.jkoscf (mgr.14182) 1381 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: audit 2024-01-24T03:21:28.918207+0000 mon.smithi152 (mon.0) 995 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.urvalo"}]: dispatch 2024-01-24T03:21:30.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: cephadm 2024-01-24T03:21:28.919475+0000 mgr.smithi152.jkoscf (mgr.14182) 1382 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo 2024-01-24T03:21:30.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:21:30.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo 2024-01-24T03:21:30.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:21:30.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo 2024-01-24T03:21:30.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.urvalo ... 2024-01-24T03:21:30.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:30.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:21:30.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:21:30.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:21:30.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:30.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:29 smithi195 bash[19846]: cephadm 2024-01-24T03:21:28.922725+0000 mgr.smithi152.jkoscf (mgr.14182) 1383 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.toazfa on smithi152 2024-01-24T03:21:31.176 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:30 smithi152 bash[16344]: cluster 2024-01-24T03:21:29.130507+0000 mgr.smithi152.jkoscf (mgr.14182) 1384 : cluster [DBG] pgmap v902: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:21:31.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:30 smithi195 bash[19846]: cluster 2024-01-24T03:21:29.130507+0000 mgr.smithi152.jkoscf (mgr.14182) 1384 : cluster [DBG] pgmap v902: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:21:32.938 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:21:32.938 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:21:32.991 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:32 smithi152 bash[16344]: cluster 2024-01-24T03:21:31.132092+0000 mgr.smithi152.jkoscf (mgr.14182) 1385 : cluster [DBG] pgmap v903: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:21:32.991 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:32 smithi152 bash[16344]: audit 2024-01-24T03:21:32.775933+0000 mon.smithi152 (mon.0) 996 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.toazfa"}]: dispatch 2024-01-24T03:21:33.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:32 smithi195 bash[19846]: cluster 2024-01-24T03:21:31.132092+0000 mgr.smithi152.jkoscf (mgr.14182) 1385 : cluster [DBG] pgmap v903: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-24T03:21:33.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:32 smithi195 bash[19846]: audit 2024-01-24T03:21:32.775933+0000 mon.smithi152 (mon.0) 996 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.toazfa"}]: dispatch 2024-01-24T03:21:33.648 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:21:34.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: cephadm 2024-01-24T03:21:32.774763+0000 mgr.smithi152.jkoscf (mgr.14182) 1386 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa 2024-01-24T03:21:34.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:21:34.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.toazfa ... 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:21:34.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:21:34.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa 2024-01-24T03:21:34.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:21:34.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa 2024-01-24T03:21:34.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:21:34.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.toazfa ... 2024-01-24T03:21:34.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:34.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:21:34.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:21:34.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:21:34.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:34.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: cephadm 2024-01-24T03:21:32.775271+0000 mgr.smithi152.jkoscf (mgr.14182) 1387 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: cephadm 2024-01-24T03:21:32.777705+0000 mgr.smithi152.jkoscf (mgr.14182) 1388 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa 2024-01-24T03:21:34.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:21:34.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa 2024-01-24T03:21:34.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:21:34.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.toazfa ... 2024-01-24T03:21:34.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:34.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:21:34.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:21:34.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:21:34.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:34.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: cephadm 2024-01-24T03:21:32.781920+0000 mgr.smithi152.jkoscf (mgr.14182) 1389 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:21:34.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: cephadm 2024-01-24T03:21:32.785774+0000 mgr.smithi152.jkoscf (mgr.14182) 1390 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:21:34.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: cluster 2024-01-24T03:21:32.787732+0000 mgr.smithi152.jkoscf (mgr.14182) 1391 : cluster [DBG] pgmap v904: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:21:34.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: audit 2024-01-24T03:21:32.921274+0000 mgr.smithi152.jkoscf (mgr.14182) 1392 : audit [DBG] from='client.15646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:34.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: cluster 2024-01-24T03:21:32.930073+0000 mon.smithi152 (mon.0) 997 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:21:34.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:33 smithi195 bash[19846]: audit 2024-01-24T03:21:33.028752+0000 mon.smithi152 (mon.0) 998 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:21:34.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: cephadm 2024-01-24T03:21:32.774763+0000 mgr.smithi152.jkoscf (mgr.14182) 1386 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.toazfa ... 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:21:34.334 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.toazfa ... 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:34.335 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: cephadm 2024-01-24T03:21:32.775271+0000 mgr.smithi152.jkoscf (mgr.14182) 1387 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: cephadm 2024-01-24T03:21:32.777705+0000 mgr.smithi152.jkoscf (mgr.14182) 1388 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.toazfa ... 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: cephadm 2024-01-24T03:21:32.781920+0000 mgr.smithi152.jkoscf (mgr.14182) 1389 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:21:34.336 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: cephadm 2024-01-24T03:21:32.785774+0000 mgr.smithi152.jkoscf (mgr.14182) 1390 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:21:34.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: cluster 2024-01-24T03:21:32.787732+0000 mgr.smithi152.jkoscf (mgr.14182) 1391 : cluster [DBG] pgmap v904: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:21:34.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: audit 2024-01-24T03:21:32.921274+0000 mgr.smithi152.jkoscf (mgr.14182) 1392 : audit [DBG] from='client.15646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:34.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: cluster 2024-01-24T03:21:32.930073+0000 mon.smithi152 (mon.0) 997 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:21:34.337 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:33 smithi152 bash[16344]: audit 2024-01-24T03:21:33.028752+0000 mon.smithi152 (mon.0) 998 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:21:34.649 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:21:36.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:35 smithi152 bash[16344]: cluster 2024-01-24T03:21:34.789548+0000 mgr.smithi152.jkoscf (mgr.14182) 1393 : cluster [DBG] pgmap v905: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:21:36.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:35 smithi195 bash[19846]: cluster 2024-01-24T03:21:34.789548+0000 mgr.smithi152.jkoscf (mgr.14182) 1393 : cluster [DBG] pgmap v905: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-24T03:21:37.883 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:21:37.883 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:21:38.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:37 smithi195 bash[19846]: cluster 2024-01-24T03:21:36.791382+0000 mgr.smithi152.jkoscf (mgr.14182) 1394 : cluster [DBG] pgmap v906: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2024-01-24T03:21:38.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:37 smithi152 bash[16344]: cluster 2024-01-24T03:21:36.791382+0000 mgr.smithi152.jkoscf (mgr.14182) 1394 : cluster [DBG] pgmap v906: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2024-01-24T03:21:38.536 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:21:39.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:38 smithi195 bash[19846]: audit 2024-01-24T03:21:37.866439+0000 mgr.smithi152.jkoscf (mgr.14182) 1395 : audit [DBG] from='client.15650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:39.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:38 smithi152 bash[16344]: audit 2024-01-24T03:21:37.866439+0000 mgr.smithi152.jkoscf (mgr.14182) 1395 : audit [DBG] from='client.15650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:39.537 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:21:40.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:39 smithi195 bash[19846]: cluster 2024-01-24T03:21:38.792806+0000 mgr.smithi152.jkoscf (mgr.14182) 1396 : cluster [DBG] pgmap v907: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:21:40.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:39 smithi152 bash[16344]: cluster 2024-01-24T03:21:38.792806+0000 mgr.smithi152.jkoscf (mgr.14182) 1396 : cluster [DBG] pgmap v907: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:21:41.064 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:40 smithi152 bash[16344]: cluster 2024-01-24T03:21:40.794451+0000 mgr.smithi152.jkoscf (mgr.14182) 1397 : cluster [DBG] pgmap v908: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:21:41.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:40 smithi195 bash[19846]: cluster 2024-01-24T03:21:40.794451+0000 mgr.smithi152.jkoscf (mgr.14182) 1397 : cluster [DBG] pgmap v908: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:21:42.974 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:21:42.975 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:21:43.617 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:21:44.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:43 smithi152 bash[16344]: cluster 2024-01-24T03:21:42.795672+0000 mgr.smithi152.jkoscf (mgr.14182) 1398 : cluster [DBG] pgmap v909: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:21:44.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:43 smithi195 bash[19846]: cluster 2024-01-24T03:21:42.795672+0000 mgr.smithi152.jkoscf (mgr.14182) 1398 : cluster [DBG] pgmap v909: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:21:44.618 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:21:45.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:44 smithi152 bash[16344]: audit 2024-01-24T03:21:42.958222+0000 mgr.smithi152.jkoscf (mgr.14182) 1399 : audit [DBG] from='client.15654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:45.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:44 smithi195 bash[19846]: audit 2024-01-24T03:21:42.958222+0000 mgr.smithi152.jkoscf (mgr.14182) 1399 : audit [DBG] from='client.15654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:46.207 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:45 smithi152 bash[16344]: cluster 2024-01-24T03:21:44.797435+0000 mgr.smithi152.jkoscf (mgr.14182) 1400 : cluster [DBG] pgmap v910: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:45 smithi195 bash[19846]: cluster 2024-01-24T03:21:44.797435+0000 mgr.smithi152.jkoscf (mgr.14182) 1400 : cluster [DBG] pgmap v910: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:48.063 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:21:48.063 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:21:48.135 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:47 smithi152 bash[16344]: cluster 2024-01-24T03:21:46.798866+0000 mgr.smithi152.jkoscf (mgr.14182) 1401 : cluster [DBG] pgmap v911: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:21:48.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:47 smithi195 bash[19846]: cluster 2024-01-24T03:21:46.798866+0000 mgr.smithi152.jkoscf (mgr.14182) 1401 : cluster [DBG] pgmap v911: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:21:48.755 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:21:49.756 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:21:49.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:49 smithi195 bash[19846]: audit 2024-01-24T03:21:48.047341+0000 mgr.smithi152.jkoscf (mgr.14182) 1402 : audit [DBG] from='client.15658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:49.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:49 smithi195 bash[19846]: cluster 2024-01-24T03:21:48.800236+0000 mgr.smithi152.jkoscf (mgr.14182) 1403 : cluster [DBG] pgmap v912: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:50.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:49 smithi152 bash[16344]: audit 2024-01-24T03:21:48.047341+0000 mgr.smithi152.jkoscf (mgr.14182) 1402 : audit [DBG] from='client.15658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:50.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:49 smithi152 bash[16344]: cluster 2024-01-24T03:21:48.800236+0000 mgr.smithi152.jkoscf (mgr.14182) 1403 : cluster [DBG] pgmap v912: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:52.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:51 smithi195 bash[19846]: cluster 2024-01-24T03:21:50.802069+0000 mgr.smithi152.jkoscf (mgr.14182) 1404 : cluster [DBG] pgmap v913: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:52.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:51 smithi152 bash[16344]: cluster 2024-01-24T03:21:50.802069+0000 mgr.smithi152.jkoscf (mgr.14182) 1404 : cluster [DBG] pgmap v913: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:53.110 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:21:53.110 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:21:53.702 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:21:54.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:53 smithi152 bash[16344]: cluster 2024-01-24T03:21:52.803313+0000 mgr.smithi152.jkoscf (mgr.14182) 1405 : cluster [DBG] pgmap v914: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:54.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:53 smithi195 bash[19846]: cluster 2024-01-24T03:21:52.803313+0000 mgr.smithi152.jkoscf (mgr.14182) 1405 : cluster [DBG] pgmap v914: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:54.703 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:21:55.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:54 smithi152 bash[16344]: audit 2024-01-24T03:21:53.093741+0000 mgr.smithi152.jkoscf (mgr.14182) 1406 : audit [DBG] from='client.15662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:55.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:54 smithi195 bash[19846]: audit 2024-01-24T03:21:53.093741+0000 mgr.smithi152.jkoscf (mgr.14182) 1406 : audit [DBG] from='client.15662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:56.149 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:55 smithi152 bash[16344]: cluster 2024-01-24T03:21:54.804490+0000 mgr.smithi152.jkoscf (mgr.14182) 1407 : cluster [DBG] pgmap v915: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:56.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:55 smithi195 bash[19846]: cluster 2024-01-24T03:21:54.804490+0000 mgr.smithi152.jkoscf (mgr.14182) 1407 : cluster [DBG] pgmap v915: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:21:57.973 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:21:57.974 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:21:58.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:57 smithi195 bash[19846]: cluster 2024-01-24T03:21:56.806308+0000 mgr.smithi152.jkoscf (mgr.14182) 1408 : cluster [DBG] pgmap v916: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:21:58.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:57 smithi152 bash[16344]: cluster 2024-01-24T03:21:56.806308+0000 mgr.smithi152.jkoscf (mgr.14182) 1408 : cluster [DBG] pgmap v916: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:21:58.643 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:21:59.644 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:21:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:59 smithi195 bash[19846]: audit 2024-01-24T03:21:57.960105+0000 mgr.smithi152.jkoscf (mgr.14182) 1409 : audit [DBG] from='client.15666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:21:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:21:59 smithi195 bash[19846]: cluster 2024-01-24T03:21:58.807898+0000 mgr.smithi152.jkoscf (mgr.14182) 1410 : cluster [DBG] pgmap v917: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:00.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:59 smithi152 bash[16344]: audit 2024-01-24T03:21:57.960105+0000 mgr.smithi152.jkoscf (mgr.14182) 1409 : audit [DBG] from='client.15666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:00.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:21:59 smithi152 bash[16344]: cluster 2024-01-24T03:21:58.807898+0000 mgr.smithi152.jkoscf (mgr.14182) 1410 : cluster [DBG] pgmap v917: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:02.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:01 smithi195 bash[19846]: cluster 2024-01-24T03:22:00.809892+0000 mgr.smithi152.jkoscf (mgr.14182) 1411 : cluster [DBG] pgmap v918: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:02.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:01 smithi152 bash[16344]: cluster 2024-01-24T03:22:00.809892+0000 mgr.smithi152.jkoscf (mgr.14182) 1411 : cluster [DBG] pgmap v918: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:02.881 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:22:02.881 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:22:03.471 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:22:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:03 smithi195 bash[19846]: cluster 2024-01-24T03:22:02.811227+0000 mgr.smithi152.jkoscf (mgr.14182) 1412 : cluster [DBG] pgmap v919: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:03 smithi195 bash[19846]: audit 2024-01-24T03:22:02.868532+0000 mgr.smithi152.jkoscf (mgr.14182) 1413 : audit [DBG] from='client.15670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:04.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:03 smithi152 bash[16344]: cluster 2024-01-24T03:22:02.811227+0000 mgr.smithi152.jkoscf (mgr.14182) 1412 : cluster [DBG] pgmap v919: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:04.333 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:03 smithi152 bash[16344]: audit 2024-01-24T03:22:02.868532+0000 mgr.smithi152.jkoscf (mgr.14182) 1413 : audit [DBG] from='client.15670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:04.472 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:22:06.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:05 smithi195 bash[19846]: cluster 2024-01-24T03:22:04.812991+0000 mgr.smithi152.jkoscf (mgr.14182) 1414 : cluster [DBG] pgmap v920: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:06.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:05 smithi152 bash[16344]: cluster 2024-01-24T03:22:04.812991+0000 mgr.smithi152.jkoscf (mgr.14182) 1414 : cluster [DBG] pgmap v920: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:07.696 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:22:07.696 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:22:08.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:07 smithi152 bash[16344]: cluster 2024-01-24T03:22:06.814777+0000 mgr.smithi152.jkoscf (mgr.14182) 1415 : cluster [DBG] pgmap v921: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:22:08.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:07 smithi195 bash[19846]: cluster 2024-01-24T03:22:06.814777+0000 mgr.smithi152.jkoscf (mgr.14182) 1415 : cluster [DBG] pgmap v921: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:22:08.318 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:22:09.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:08 smithi195 bash[19846]: audit 2024-01-24T03:22:07.687205+0000 mgr.smithi152.jkoscf (mgr.14182) 1416 : audit [DBG] from='client.15674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:09.319 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:22:09.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:08 smithi152 bash[16344]: audit 2024-01-24T03:22:07.687205+0000 mgr.smithi152.jkoscf (mgr.14182) 1416 : audit [DBG] from='client.15674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:10.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:09 smithi195 bash[19846]: cluster 2024-01-24T03:22:08.816639+0000 mgr.smithi152.jkoscf (mgr.14182) 1417 : cluster [DBG] pgmap v922: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:10.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:09 smithi152 bash[16344]: cluster 2024-01-24T03:22:08.816639+0000 mgr.smithi152.jkoscf (mgr.14182) 1417 : cluster [DBG] pgmap v922: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:12.164 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:11 smithi152 bash[16344]: cluster 2024-01-24T03:22:10.818193+0000 mgr.smithi152.jkoscf (mgr.14182) 1418 : cluster [DBG] pgmap v923: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:12.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:11 smithi195 bash[19846]: cluster 2024-01-24T03:22:10.818193+0000 mgr.smithi152.jkoscf (mgr.14182) 1418 : cluster [DBG] pgmap v923: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:12.585 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:22:12.585 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:22:13.248 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:22:14.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:13 smithi195 bash[19846]: audit 2024-01-24T03:22:12.571701+0000 mgr.smithi152.jkoscf (mgr.14182) 1419 : audit [DBG] from='client.15678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:14.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:13 smithi195 bash[19846]: cluster 2024-01-24T03:22:12.819682+0000 mgr.smithi152.jkoscf (mgr.14182) 1420 : cluster [DBG] pgmap v924: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:14.249 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:22:14.262 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:13 smithi152 bash[16344]: audit 2024-01-24T03:22:12.571701+0000 mgr.smithi152.jkoscf (mgr.14182) 1419 : audit [DBG] from='client.15678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:14.262 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:13 smithi152 bash[16344]: cluster 2024-01-24T03:22:12.819682+0000 mgr.smithi152.jkoscf (mgr.14182) 1420 : cluster [DBG] pgmap v924: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:16.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:15 smithi195 bash[19846]: cluster 2024-01-24T03:22:14.821436+0000 mgr.smithi152.jkoscf (mgr.14182) 1421 : cluster [DBG] pgmap v925: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:16.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:15 smithi152 bash[16344]: cluster 2024-01-24T03:22:14.821436+0000 mgr.smithi152.jkoscf (mgr.14182) 1421 : cluster [DBG] pgmap v925: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:17.517 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:22:17.518 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:22:18.156 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:22:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:17 smithi195 bash[19846]: cluster 2024-01-24T03:22:16.823334+0000 mgr.smithi152.jkoscf (mgr.14182) 1422 : cluster [DBG] pgmap v926: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:22:18.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:17 smithi152 bash[16344]: cluster 2024-01-24T03:22:16.823334+0000 mgr.smithi152.jkoscf (mgr.14182) 1422 : cluster [DBG] pgmap v926: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:22:19.157 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:22:19.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:18 smithi195 bash[19846]: audit 2024-01-24T03:22:17.501809+0000 mgr.smithi152.jkoscf (mgr.14182) 1423 : audit [DBG] from='client.15682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:19.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:18 smithi152 bash[16344]: audit 2024-01-24T03:22:17.501809+0000 mgr.smithi152.jkoscf (mgr.14182) 1423 : audit [DBG] from='client.15682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:20.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:19 smithi195 bash[19846]: cluster 2024-01-24T03:22:18.824881+0000 mgr.smithi152.jkoscf (mgr.14182) 1424 : cluster [DBG] pgmap v927: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:20.245 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:19 smithi152 bash[16344]: cluster 2024-01-24T03:22:18.824881+0000 mgr.smithi152.jkoscf (mgr.14182) 1424 : cluster [DBG] pgmap v927: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:22.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:21 smithi195 bash[19846]: cluster 2024-01-24T03:22:20.826711+0000 mgr.smithi152.jkoscf (mgr.14182) 1425 : cluster [DBG] pgmap v928: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:22.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:21 smithi152 bash[16344]: cluster 2024-01-24T03:22:20.826711+0000 mgr.smithi152.jkoscf (mgr.14182) 1425 : cluster [DBG] pgmap v928: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:22.339 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:22:22.340 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:22:23.073 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:22:24.074 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:22:24.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:23 smithi195 bash[19846]: audit 2024-01-24T03:22:22.326955+0000 mgr.smithi152.jkoscf (mgr.14182) 1426 : audit [DBG] from='client.15686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:24.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:23 smithi195 bash[19846]: cluster 2024-01-24T03:22:22.828149+0000 mgr.smithi152.jkoscf (mgr.14182) 1427 : cluster [DBG] pgmap v929: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:24.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:23 smithi152 bash[16344]: audit 2024-01-24T03:22:22.326955+0000 mgr.smithi152.jkoscf (mgr.14182) 1426 : audit [DBG] from='client.15686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:24.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:23 smithi152 bash[16344]: cluster 2024-01-24T03:22:22.828149+0000 mgr.smithi152.jkoscf (mgr.14182) 1427 : cluster [DBG] pgmap v929: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:25 smithi195 bash[19846]: cluster 2024-01-24T03:22:24.829869+0000 mgr.smithi152.jkoscf (mgr.14182) 1428 : cluster [DBG] pgmap v930: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:26.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:25 smithi152 bash[16344]: cluster 2024-01-24T03:22:24.829869+0000 mgr.smithi152.jkoscf (mgr.14182) 1428 : cluster [DBG] pgmap v930: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:27.291 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:22:27.291 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:22:27.896 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:22:28.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:27 smithi195 bash[19846]: cluster 2024-01-24T03:22:26.831808+0000 mgr.smithi152.jkoscf (mgr.14182) 1429 : cluster [DBG] pgmap v931: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:22:28.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:27 smithi152 bash[16344]: cluster 2024-01-24T03:22:26.831808+0000 mgr.smithi152.jkoscf (mgr.14182) 1429 : cluster [DBG] pgmap v931: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:22:28.898 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:22:29.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:28 smithi195 bash[19846]: audit 2024-01-24T03:22:27.277458+0000 mgr.smithi152.jkoscf (mgr.14182) 1430 : audit [DBG] from='client.15690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:29.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:28 smithi152 bash[16344]: audit 2024-01-24T03:22:27.277458+0000 mgr.smithi152.jkoscf (mgr.14182) 1430 : audit [DBG] from='client.15690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:30.230 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:29 smithi152 bash[16344]: cluster 2024-01-24T03:22:28.833549+0000 mgr.smithi152.jkoscf (mgr.14182) 1431 : cluster [DBG] pgmap v932: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:30.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:29 smithi195 bash[19846]: cluster 2024-01-24T03:22:28.833549+0000 mgr.smithi152.jkoscf (mgr.14182) 1431 : cluster [DBG] pgmap v932: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:32.015 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:22:32.015 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:22:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:31 smithi195 bash[19846]: cluster 2024-01-24T03:22:30.835362+0000 mgr.smithi152.jkoscf (mgr.14182) 1432 : cluster [DBG] pgmap v933: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:32.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:31 smithi152 bash[16344]: cluster 2024-01-24T03:22:30.835362+0000 mgr.smithi152.jkoscf (mgr.14182) 1432 : cluster [DBG] pgmap v933: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:32.627 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:22:33.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:32 smithi195 bash[19846]: audit 2024-01-24T03:22:32.789681+0000 mon.smithi152 (mon.0) 999 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:22:33.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:32 smithi152 bash[16344]: audit 2024-01-24T03:22:32.789681+0000 mon.smithi152 (mon.0) 999 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:22:33.629 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:22:34.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:33 smithi195 bash[19846]: audit 2024-01-24T03:22:32.000691+0000 mgr.smithi152.jkoscf (mgr.14182) 1433 : audit [DBG] from='client.15694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:34.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:33 smithi195 bash[19846]: cluster 2024-01-24T03:22:32.836378+0000 mgr.smithi152.jkoscf (mgr.14182) 1434 : cluster [DBG] pgmap v934: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:34.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:33 smithi152 bash[16344]: audit 2024-01-24T03:22:32.000691+0000 mgr.smithi152.jkoscf (mgr.14182) 1433 : audit [DBG] from='client.15694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:34.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:33 smithi152 bash[16344]: cluster 2024-01-24T03:22:32.836378+0000 mgr.smithi152.jkoscf (mgr.14182) 1434 : cluster [DBG] pgmap v934: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:35.049 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:34 smithi152 bash[16344]: cluster 2024-01-24T03:22:34.838064+0000 mgr.smithi152.jkoscf (mgr.14182) 1435 : cluster [DBG] pgmap v935: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:35.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:34 smithi195 bash[19846]: cluster 2024-01-24T03:22:34.838064+0000 mgr.smithi152.jkoscf (mgr.14182) 1435 : cluster [DBG] pgmap v935: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:36.914 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:22:36.914 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:12:13.289357Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:12:13.289499Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:12:13.289638Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:12:13.289206Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:12:13.288958Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:12:13.290637Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:12:13.289776Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:12:13.289913Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:12:13.290496Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:22:37.526 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:22:38.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:37 smithi195 bash[19846]: cluster 2024-01-24T03:22:36.839946+0000 mgr.smithi152.jkoscf (mgr.14182) 1436 : cluster [DBG] pgmap v936: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:22:38.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:37 smithi195 bash[19846]: audit 2024-01-24T03:22:36.898951+0000 mgr.smithi152.jkoscf (mgr.14182) 1437 : audit [DBG] from='client.15698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:38.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:37 smithi152 bash[16344]: cluster 2024-01-24T03:22:36.839946+0000 mgr.smithi152.jkoscf (mgr.14182) 1436 : cluster [DBG] pgmap v936: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:22:38.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:37 smithi152 bash[16344]: audit 2024-01-24T03:22:36.898951+0000 mgr.smithi152.jkoscf (mgr.14182) 1437 : audit [DBG] from='client.15698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:38.527 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:22:39.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:39 smithi195 bash[19846]: cluster 2024-01-24T03:22:38.841494+0000 mgr.smithi152.jkoscf (mgr.14182) 1438 : cluster [DBG] pgmap v937: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:40.057 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:39 smithi152 bash[16344]: cluster 2024-01-24T03:22:38.841494+0000 mgr.smithi152.jkoscf (mgr.14182) 1438 : cluster [DBG] pgmap v937: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:41.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:41 smithi152 bash[16344]: audit 2024-01-24T03:22:40.526567+0000 mon.smithi152 (mon.0) 1000 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:22:41.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:41 smithi152 bash[16344]: audit 2024-01-24T03:22:40.815902+0000 mon.smithi152 (mon.0) 1001 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:22:41.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:41 smithi152 bash[16344]: audit 2024-01-24T03:22:40.817183+0000 mon.smithi152 (mon.0) 1002 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:22:41.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:41 smithi152 bash[16344]: audit 2024-01-24T03:22:40.824103+0000 mon.smithi152 (mon.0) 1003 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:22:41.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:41 smithi152 bash[16344]: cluster 2024-01-24T03:22:40.825858+0000 mgr.smithi152.jkoscf (mgr.14182) 1439 : cluster [DBG] pgmap v938: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:41.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:41 smithi152 bash[16344]: audit 2024-01-24T03:22:40.832593+0000 mon.smithi152 (mon.0) 1004 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:22:41.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:41 smithi152 bash[16344]: audit 2024-01-24T03:22:40.846178+0000 mon.smithi152 (mon.0) 1005 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:22:41.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:41 smithi152 bash[16344]: cephadm 2024-01-24T03:22:40.850569+0000 mgr.smithi152.jkoscf (mgr.14182) 1440 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.ievusa on smithi195 2024-01-24T03:22:41.842 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:22:41.842 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:20:24.781251Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.idploe on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:22:41.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:41 smithi195 bash[19846]: audit 2024-01-24T03:22:40.526567+0000 mon.smithi152 (mon.0) 1000 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:22:41.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:41 smithi195 bash[19846]: audit 2024-01-24T03:22:40.815902+0000 mon.smithi152 (mon.0) 1001 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:22:41.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:41 smithi195 bash[19846]: audit 2024-01-24T03:22:40.817183+0000 mon.smithi152 (mon.0) 1002 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:22:41.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:41 smithi195 bash[19846]: audit 2024-01-24T03:22:40.824103+0000 mon.smithi152 (mon.0) 1003 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:22:41.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:41 smithi195 bash[19846]: cluster 2024-01-24T03:22:40.825858+0000 mgr.smithi152.jkoscf (mgr.14182) 1439 : cluster [DBG] pgmap v938: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:41 smithi195 bash[19846]: audit 2024-01-24T03:22:40.832593+0000 mon.smithi152 (mon.0) 1004 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:22:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:41 smithi195 bash[19846]: audit 2024-01-24T03:22:40.846178+0000 mon.smithi152 (mon.0) 1005 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:22:41.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:41 smithi195 bash[19846]: cephadm 2024-01-24T03:22:40.850569+0000 mgr.smithi152.jkoscf (mgr.14182) 1440 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.ievusa on smithi195 2024-01-24T03:22:42.465 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:22:42.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:42 smithi152 bash[16344]: cluster 2024-01-24T03:22:41.822004+0000 mon.smithi152 (mon.0) 1006 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:22:42.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:42 smithi152 bash[16344]: cluster 2024-01-24T03:22:41.822070+0000 mon.smithi152 (mon.0) 1007 : cluster [INF] Cluster is now healthy 2024-01-24T03:22:42.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:42 smithi152 bash[16344]: audit 2024-01-24T03:22:41.829626+0000 mgr.smithi152.jkoscf (mgr.14182) 1441 : audit [DBG] from='client.15702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:42.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:42 smithi195 bash[19846]: cluster 2024-01-24T03:22:41.822004+0000 mon.smithi152 (mon.0) 1006 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:22:42.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:42 smithi195 bash[19846]: cluster 2024-01-24T03:22:41.822070+0000 mon.smithi152 (mon.0) 1007 : cluster [INF] Cluster is now healthy 2024-01-24T03:22:42.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:42 smithi195 bash[19846]: audit 2024-01-24T03:22:41.829626+0000 mgr.smithi152.jkoscf (mgr.14182) 1441 : audit [DBG] from='client.15702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:43.466 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:22:43.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:43 smithi152 bash[16344]: cluster 2024-01-24T03:22:42.826975+0000 mgr.smithi152.jkoscf (mgr.14182) 1442 : cluster [DBG] pgmap v939: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:43.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:43 smithi195 bash[19846]: cluster 2024-01-24T03:22:42.826975+0000 mgr.smithi152.jkoscf (mgr.14182) 1442 : cluster [DBG] pgmap v939: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:44.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:44 smithi152 bash[16344]: audit 2024-01-24T03:22:44.623663+0000 mon.smithi152 (mon.0) 1008 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.ievusa"}]: dispatch 2024-01-24T03:22:44.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:44 smithi195 bash[19846]: audit 2024-01-24T03:22:44.623663+0000 mon.smithi152 (mon.0) 1008 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.ievusa"}]: dispatch 2024-01-24T03:22:45.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: cephadm 2024-01-24T03:22:44.622895+0000 mgr.smithi152.jkoscf (mgr.14182) 1443 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa 2024-01-24T03:22:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:22:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa 2024-01-24T03:22:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa 2024-01-24T03:22:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:22:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa 2024-01-24T03:22:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.ievusa ... 2024-01-24T03:22:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:22:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:22:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:22:45.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.ievusa ... 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:45.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: cephadm 2024-01-24T03:22:44.623182+0000 mgr.smithi152.jkoscf (mgr.14182) 1444 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.ievusa 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: cephadm 2024-01-24T03:22:44.624717+0000 mgr.smithi152.jkoscf (mgr.14182) 1445 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.ievusa ... 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:22:45.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:22:45.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:22:45.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:45.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: cephadm 2024-01-24T03:22:44.627097+0000 mgr.smithi152.jkoscf (mgr.14182) 1446 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.zeowog on smithi152 2024-01-24T03:22:45.995 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:45 smithi195 bash[19846]: cluster 2024-01-24T03:22:44.828483+0000 mgr.smithi152.jkoscf (mgr.14182) 1447 : cluster [DBG] pgmap v940: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:46.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: cephadm 2024-01-24T03:22:44.622895+0000 mgr.smithi152.jkoscf (mgr.14182) 1443 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa 2024-01-24T03:22:46.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:22:46.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa 2024-01-24T03:22:46.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa 2024-01-24T03:22:46.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:22:46.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa 2024-01-24T03:22:46.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.ievusa ... 2024-01-24T03:22:46.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:46.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:22:46.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:22:46.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:22:46.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:46.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:22:46.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:22:46.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:22:46.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:22:46.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:22:46.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa 2024-01-24T03:22:46.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:22:46.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa 2024-01-24T03:22:46.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa 2024-01-24T03:22:46.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:22:46.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa 2024-01-24T03:22:46.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.ievusa ... 2024-01-24T03:22:46.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:46.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:22:46.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:22:46.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:22:46.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:46.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: cephadm 2024-01-24T03:22:44.623182+0000 mgr.smithi152.jkoscf (mgr.14182) 1444 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.ievusa 2024-01-24T03:22:46.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: cephadm 2024-01-24T03:22:44.624717+0000 mgr.smithi152.jkoscf (mgr.14182) 1445 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa 2024-01-24T03:22:46.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:22:46.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa 2024-01-24T03:22:46.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa 2024-01-24T03:22:46.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:22:46.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa 2024-01-24T03:22:46.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.ievusa ... 2024-01-24T03:22:46.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:46.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:22:46.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:22:46.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:22:46.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:46.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: cephadm 2024-01-24T03:22:44.627097+0000 mgr.smithi152.jkoscf (mgr.14182) 1446 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.zeowog on smithi152 2024-01-24T03:22:46.086 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:45 smithi152 bash[16344]: cluster 2024-01-24T03:22:44.828483+0000 mgr.smithi152.jkoscf (mgr.14182) 1447 : cluster [DBG] pgmap v940: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:22:46.832 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:22:46.832 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:28.919295Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.urvalo on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-urvalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.urvalo\nDeploy daemon haproxy.nfs.foo.smithi195.urvalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.777491Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.toazfa on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-toazfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.toazfa\nDeploy daemon haproxy.nfs.foo.smithi152.toazfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:21:32.781717Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.kkmhcx on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:22:47.526 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:22:48.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:47 smithi195 bash[19846]: audit 2024-01-24T03:22:46.824012+0000 mgr.smithi152.jkoscf (mgr.14182) 1448 : audit [DBG] from='client.15706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:48.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:47 smithi195 bash[19846]: cluster 2024-01-24T03:22:46.830092+0000 mgr.smithi152.jkoscf (mgr.14182) 1449 : cluster [DBG] pgmap v941: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:22:48.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:47 smithi152 bash[16344]: audit 2024-01-24T03:22:46.824012+0000 mgr.smithi152.jkoscf (mgr.14182) 1448 : audit [DBG] from='client.15706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:48.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:47 smithi152 bash[16344]: cluster 2024-01-24T03:22:46.830092+0000 mgr.smithi152.jkoscf (mgr.14182) 1449 : cluster [DBG] pgmap v941: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:22:48.527 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:22:49.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:48 smithi195 bash[19846]: audit 2024-01-24T03:22:48.523295+0000 mon.smithi152 (mon.0) 1009 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.zeowog"}]: dispatch 2024-01-24T03:22:49.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:48 smithi152 bash[16344]: audit 2024-01-24T03:22:48.523295+0000 mon.smithi152 (mon.0) 1009 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.zeowog"}]: dispatch 2024-01-24T03:22:50.117 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: cephadm 2024-01-24T03:22:48.522337+0000 mgr.smithi152.jkoscf (mgr.14182) 1450 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog 2024-01-24T03:22:50.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:22:50.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog 2024-01-24T03:22:50.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:22:50.118 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.zeowog ... 2024-01-24T03:22:50.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:50.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:22:50.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:22:50.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:22:50.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:50.119 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:22:50.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:22:50.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:22:50.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:22:50.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:22:50.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog 2024-01-24T03:22:50.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:22:50.120 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog 2024-01-24T03:22:50.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:22:50.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.zeowog ... 2024-01-24T03:22:50.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:50.121 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:22:50.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:22:50.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:22:50.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:50.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: cephadm 2024-01-24T03:22:48.522763+0000 mgr.smithi152.jkoscf (mgr.14182) 1451 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: cephadm 2024-01-24T03:22:48.524607+0000 mgr.smithi152.jkoscf (mgr.14182) 1452 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog 2024-01-24T03:22:50.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:22:50.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog 2024-01-24T03:22:50.122 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:22:50.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.zeowog ... 2024-01-24T03:22:50.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:50.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:22:50.123 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:22:50.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:22:50.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:50.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: cephadm 2024-01-24T03:22:48.527779+0000 mgr.smithi152.jkoscf (mgr.14182) 1453 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:22:50.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: cephadm 2024-01-24T03:22:48.530594+0000 mgr.smithi152.jkoscf (mgr.14182) 1454 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:22:50.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: cluster 2024-01-24T03:22:48.531598+0000 mgr.smithi152.jkoscf (mgr.14182) 1455 : cluster [DBG] pgmap v942: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:22:50.124 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:49 smithi152 bash[16344]: cluster 2024-01-24T03:22:48.887828+0000 mon.smithi152 (mon.0) 1010 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:22:50.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: cephadm 2024-01-24T03:22:48.522337+0000 mgr.smithi152.jkoscf (mgr.14182) 1450 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog 2024-01-24T03:22:50.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:22:50.197 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog 2024-01-24T03:22:50.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:22:50.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.zeowog ... 2024-01-24T03:22:50.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:50.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:22:50.198 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:22:50.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:22:50.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:50.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:22:50.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:22:50.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:22:50.199 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:22:50.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:22:50.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog 2024-01-24T03:22:50.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:22:50.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog 2024-01-24T03:22:50.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:22:50.200 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.zeowog ... 2024-01-24T03:22:50.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:50.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:22:50.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:22:50.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:22:50.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:50.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: cephadm 2024-01-24T03:22:48.522763+0000 mgr.smithi152.jkoscf (mgr.14182) 1451 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.201 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: cephadm 2024-01-24T03:22:48.524607+0000 mgr.smithi152.jkoscf (mgr.14182) 1452 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog 2024-01-24T03:22:50.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:22:50.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog 2024-01-24T03:22:50.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:22:50.202 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog 2024-01-24T03:22:50.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.zeowog ... 2024-01-24T03:22:50.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:50.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:22:50.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:22:50.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:22:50.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:22:50.203 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: cephadm 2024-01-24T03:22:48.527779+0000 mgr.smithi152.jkoscf (mgr.14182) 1453 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:22:50.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: cephadm 2024-01-24T03:22:48.530594+0000 mgr.smithi152.jkoscf (mgr.14182) 1454 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:22:50.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: cluster 2024-01-24T03:22:48.531598+0000 mgr.smithi152.jkoscf (mgr.14182) 1455 : cluster [DBG] pgmap v942: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:22:50.204 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:49 smithi195 bash[19846]: cluster 2024-01-24T03:22:48.887828+0000 mon.smithi152 (mon.0) 1010 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:22:51.932 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:22:51.932 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:22:52.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:51 smithi195 bash[19846]: cluster 2024-01-24T03:22:50.533396+0000 mgr.smithi152.jkoscf (mgr.14182) 1456 : cluster [DBG] pgmap v943: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:22:52.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:51 smithi152 bash[16344]: cluster 2024-01-24T03:22:50.533396+0000 mgr.smithi152.jkoscf (mgr.14182) 1456 : cluster [DBG] pgmap v943: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:22:52.569 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:22:53.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:52 smithi195 bash[19846]: audit 2024-01-24T03:22:51.923697+0000 mgr.smithi152.jkoscf (mgr.14182) 1457 : audit [DBG] from='client.15710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:53.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:52 smithi152 bash[16344]: audit 2024-01-24T03:22:51.923697+0000 mgr.smithi152.jkoscf (mgr.14182) 1457 : audit [DBG] from='client.15710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:53.570 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:22:54.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:53 smithi195 bash[19846]: cluster 2024-01-24T03:22:52.534391+0000 mgr.smithi152.jkoscf (mgr.14182) 1458 : cluster [DBG] pgmap v944: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:22:54.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:53 smithi195 bash[19846]: audit 2024-01-24T03:22:53.097228+0000 mon.smithi152 (mon.0) 1011 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:22:54.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:53 smithi152 bash[16344]: cluster 2024-01-24T03:22:52.534391+0000 mgr.smithi152.jkoscf (mgr.14182) 1458 : cluster [DBG] pgmap v944: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:22:54.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:53 smithi152 bash[16344]: audit 2024-01-24T03:22:53.097228+0000 mon.smithi152 (mon.0) 1011 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:22:56.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:55 smithi195 bash[19846]: cluster 2024-01-24T03:22:54.535883+0000 mgr.smithi152.jkoscf (mgr.14182) 1459 : cluster [DBG] pgmap v945: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:22:56.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:55 smithi152 bash[16344]: cluster 2024-01-24T03:22:54.535883+0000 mgr.smithi152.jkoscf (mgr.14182) 1459 : cluster [DBG] pgmap v945: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:22:57.030 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:22:57.030 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:22:57.628 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:22:58.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:57 smithi195 bash[19846]: cluster 2024-01-24T03:22:56.537817+0000 mgr.smithi152.jkoscf (mgr.14182) 1460 : cluster [DBG] pgmap v946: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:22:58.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:57 smithi152 bash[16344]: cluster 2024-01-24T03:22:56.537817+0000 mgr.smithi152.jkoscf (mgr.14182) 1460 : cluster [DBG] pgmap v946: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:22:58.630 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:22:59.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:58 smithi195 bash[19846]: audit 2024-01-24T03:22:57.021790+0000 mgr.smithi152.jkoscf (mgr.14182) 1461 : audit [DBG] from='client.15714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:22:59.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:58 smithi152 bash[16344]: audit 2024-01-24T03:22:57.021790+0000 mgr.smithi152.jkoscf (mgr.14182) 1461 : audit [DBG] from='client.15714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:00.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:22:59 smithi152 bash[16344]: cluster 2024-01-24T03:22:58.539399+0000 mgr.smithi152.jkoscf (mgr.14182) 1462 : cluster [DBG] pgmap v947: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:23:00.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:22:59 smithi195 bash[19846]: cluster 2024-01-24T03:22:58.539399+0000 mgr.smithi152.jkoscf (mgr.14182) 1462 : cluster [DBG] pgmap v947: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-01-24T03:23:01.892 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:23:01.893 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:23:02.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:01 smithi195 bash[19846]: cluster 2024-01-24T03:23:00.541313+0000 mgr.smithi152.jkoscf (mgr.14182) 1463 : cluster [DBG] pgmap v948: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:02.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:01 smithi152 bash[16344]: cluster 2024-01-24T03:23:00.541313+0000 mgr.smithi152.jkoscf (mgr.14182) 1463 : cluster [DBG] pgmap v948: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:02.511 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:23:03.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:02 smithi195 bash[19846]: audit 2024-01-24T03:23:01.877110+0000 mgr.smithi152.jkoscf (mgr.14182) 1464 : audit [DBG] from='client.15718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:03.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:02 smithi152 bash[16344]: audit 2024-01-24T03:23:01.877110+0000 mgr.smithi152.jkoscf (mgr.14182) 1464 : audit [DBG] from='client.15718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:03.512 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:23:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:03 smithi195 bash[19846]: cluster 2024-01-24T03:23:02.543165+0000 mgr.smithi152.jkoscf (mgr.14182) 1465 : cluster [DBG] pgmap v949: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:04.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:03 smithi152 bash[16344]: cluster 2024-01-24T03:23:02.543165+0000 mgr.smithi152.jkoscf (mgr.14182) 1465 : cluster [DBG] pgmap v949: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:06.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:05 smithi195 bash[19846]: cluster 2024-01-24T03:23:04.545131+0000 mgr.smithi152.jkoscf (mgr.14182) 1466 : cluster [DBG] pgmap v950: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:06.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:05 smithi152 bash[16344]: cluster 2024-01-24T03:23:04.545131+0000 mgr.smithi152.jkoscf (mgr.14182) 1466 : cluster [DBG] pgmap v950: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:06.816 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:23:06.816 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:23:07.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:06 smithi195 bash[19846]: cluster 2024-01-24T03:23:06.546891+0000 mgr.smithi152.jkoscf (mgr.14182) 1467 : cluster [DBG] pgmap v951: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:07.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:06 smithi195 bash[19846]: audit 2024-01-24T03:23:06.800118+0000 mgr.smithi152.jkoscf (mgr.14182) 1468 : audit [DBG] from='client.15722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:07.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:06 smithi152 bash[16344]: cluster 2024-01-24T03:23:06.546891+0000 mgr.smithi152.jkoscf (mgr.14182) 1467 : cluster [DBG] pgmap v951: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:07.332 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:06 smithi152 bash[16344]: audit 2024-01-24T03:23:06.800118+0000 mgr.smithi152.jkoscf (mgr.14182) 1468 : audit [DBG] from='client.15722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:07.471 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:23:08.471 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:23:09.849 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:09 smithi152 bash[16344]: cluster 2024-01-24T03:23:08.548333+0000 mgr.smithi152.jkoscf (mgr.14182) 1469 : cluster [DBG] pgmap v952: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:23:09.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:09 smithi195 bash[19846]: cluster 2024-01-24T03:23:08.548333+0000 mgr.smithi152.jkoscf (mgr.14182) 1469 : cluster [DBG] pgmap v952: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:23:11.581 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:23:11.581 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:23:11.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:11 smithi195 bash[19846]: cluster 2024-01-24T03:23:10.550172+0000 mgr.smithi152.jkoscf (mgr.14182) 1470 : cluster [DBG] pgmap v953: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:12.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:11 smithi152 bash[16344]: cluster 2024-01-24T03:23:10.550172+0000 mgr.smithi152.jkoscf (mgr.14182) 1470 : cluster [DBG] pgmap v953: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:12.206 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:23:12.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:12 smithi195 bash[19846]: audit 2024-01-24T03:23:11.573319+0000 mgr.smithi152.jkoscf (mgr.14182) 1471 : audit [DBG] from='client.15726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:13.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:12 smithi152 bash[16344]: audit 2024-01-24T03:23:11.573319+0000 mgr.smithi152.jkoscf (mgr.14182) 1471 : audit [DBG] from='client.15726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:13.207 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:23:13.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:13 smithi195 bash[19846]: cluster 2024-01-24T03:23:12.552058+0000 mgr.smithi152.jkoscf (mgr.14182) 1472 : cluster [DBG] pgmap v954: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:14.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:13 smithi152 bash[16344]: cluster 2024-01-24T03:23:12.552058+0000 mgr.smithi152.jkoscf (mgr.14182) 1472 : cluster [DBG] pgmap v954: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:15.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:15 smithi195 bash[19846]: cluster 2024-01-24T03:23:14.553742+0000 mgr.smithi152.jkoscf (mgr.14182) 1473 : cluster [DBG] pgmap v955: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:16.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:15 smithi152 bash[16344]: cluster 2024-01-24T03:23:14.553742+0000 mgr.smithi152.jkoscf (mgr.14182) 1473 : cluster [DBG] pgmap v955: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:16.537 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:23:16.537 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:23:17.182 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:23:18.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:17 smithi152 bash[16344]: audit 2024-01-24T03:23:16.524030+0000 mgr.smithi152.jkoscf (mgr.14182) 1474 : audit [DBG] from='client.15730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:18.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:17 smithi152 bash[16344]: cluster 2024-01-24T03:23:16.555630+0000 mgr.smithi152.jkoscf (mgr.14182) 1475 : cluster [DBG] pgmap v956: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:18.182 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:23:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:17 smithi195 bash[19846]: audit 2024-01-24T03:23:16.524030+0000 mgr.smithi152.jkoscf (mgr.14182) 1474 : audit [DBG] from='client.15730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:18.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:17 smithi195 bash[19846]: cluster 2024-01-24T03:23:16.555630+0000 mgr.smithi152.jkoscf (mgr.14182) 1475 : cluster [DBG] pgmap v956: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:20.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:19 smithi152 bash[16344]: cluster 2024-01-24T03:23:18.557022+0000 mgr.smithi152.jkoscf (mgr.14182) 1476 : cluster [DBG] pgmap v957: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:23:20.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:19 smithi195 bash[19846]: cluster 2024-01-24T03:23:18.557022+0000 mgr.smithi152.jkoscf (mgr.14182) 1476 : cluster [DBG] pgmap v957: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:23:21.431 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:23:21.431 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:23:21.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:21 smithi152 bash[16344]: cluster 2024-01-24T03:23:20.558923+0000 mgr.smithi152.jkoscf (mgr.14182) 1477 : cluster [DBG] pgmap v958: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:22.028 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:23:22.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:21 smithi195 bash[19846]: cluster 2024-01-24T03:23:20.558923+0000 mgr.smithi152.jkoscf (mgr.14182) 1477 : cluster [DBG] pgmap v958: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:23.029 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:23:23.041 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:22 smithi152 bash[16344]: audit 2024-01-24T03:23:21.416177+0000 mgr.smithi152.jkoscf (mgr.14182) 1478 : audit [DBG] from='client.15734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:23.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:22 smithi195 bash[19846]: audit 2024-01-24T03:23:21.416177+0000 mgr.smithi152.jkoscf (mgr.14182) 1478 : audit [DBG] from='client.15734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:24.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:23 smithi152 bash[16344]: cluster 2024-01-24T03:23:22.560742+0000 mgr.smithi152.jkoscf (mgr.14182) 1479 : cluster [DBG] pgmap v959: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:24.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:23 smithi195 bash[19846]: cluster 2024-01-24T03:23:22.560742+0000 mgr.smithi152.jkoscf (mgr.14182) 1479 : cluster [DBG] pgmap v959: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:26.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:25 smithi152 bash[16344]: cluster 2024-01-24T03:23:24.562387+0000 mgr.smithi152.jkoscf (mgr.14182) 1480 : cluster [DBG] pgmap v960: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:26.187 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:23:26.187 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:23:26.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:25 smithi195 bash[19846]: cluster 2024-01-24T03:23:24.562387+0000 mgr.smithi152.jkoscf (mgr.14182) 1480 : cluster [DBG] pgmap v960: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:26.851 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:23:27.851 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:23:28.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:27 smithi152 bash[16344]: audit 2024-01-24T03:23:26.171216+0000 mgr.smithi152.jkoscf (mgr.14182) 1481 : audit [DBG] from='client.15738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:28.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:27 smithi152 bash[16344]: cluster 2024-01-24T03:23:26.564198+0000 mgr.smithi152.jkoscf (mgr.14182) 1482 : cluster [DBG] pgmap v961: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:28.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:27 smithi195 bash[19846]: audit 2024-01-24T03:23:26.171216+0000 mgr.smithi152.jkoscf (mgr.14182) 1481 : audit [DBG] from='client.15738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:28.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:27 smithi195 bash[19846]: cluster 2024-01-24T03:23:26.564198+0000 mgr.smithi152.jkoscf (mgr.14182) 1482 : cluster [DBG] pgmap v961: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:30.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:29 smithi152 bash[16344]: cluster 2024-01-24T03:23:28.565678+0000 mgr.smithi152.jkoscf (mgr.14182) 1483 : cluster [DBG] pgmap v962: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:23:30.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:29 smithi195 bash[19846]: cluster 2024-01-24T03:23:28.565678+0000 mgr.smithi152.jkoscf (mgr.14182) 1483 : cluster [DBG] pgmap v962: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:23:31.200 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:23:31.200 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:23:31.824 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:23:32.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:31 smithi152 bash[16344]: cluster 2024-01-24T03:23:30.567660+0000 mgr.smithi152.jkoscf (mgr.14182) 1484 : cluster [DBG] pgmap v963: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:32.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:31 smithi195 bash[19846]: cluster 2024-01-24T03:23:30.567660+0000 mgr.smithi152.jkoscf (mgr.14182) 1484 : cluster [DBG] pgmap v963: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:32.825 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:23:33.088 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:32 smithi152 bash[16344]: audit 2024-01-24T03:23:31.191557+0000 mgr.smithi152.jkoscf (mgr.14182) 1485 : audit [DBG] from='client.15742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:33.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:32 smithi195 bash[19846]: audit 2024-01-24T03:23:31.191557+0000 mgr.smithi152.jkoscf (mgr.14182) 1485 : audit [DBG] from='client.15742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:34.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:33 smithi152 bash[16344]: cluster 2024-01-24T03:23:32.569533+0000 mgr.smithi152.jkoscf (mgr.14182) 1486 : cluster [DBG] pgmap v964: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:34.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:33 smithi195 bash[19846]: cluster 2024-01-24T03:23:32.569533+0000 mgr.smithi152.jkoscf (mgr.14182) 1486 : cluster [DBG] pgmap v964: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:36.034 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:23:36.034 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:23:36.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:35 smithi152 bash[16344]: cluster 2024-01-24T03:23:34.571263+0000 mgr.smithi152.jkoscf (mgr.14182) 1487 : cluster [DBG] pgmap v965: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:36.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:35 smithi195 bash[19846]: cluster 2024-01-24T03:23:34.571263+0000 mgr.smithi152.jkoscf (mgr.14182) 1487 : cluster [DBG] pgmap v965: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:36.721 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:23:37.722 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:23:38.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:37 smithi152 bash[16344]: audit 2024-01-24T03:23:36.024751+0000 mgr.smithi152.jkoscf (mgr.14182) 1488 : audit [DBG] from='client.15746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:38.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:37 smithi152 bash[16344]: cluster 2024-01-24T03:23:36.573134+0000 mgr.smithi152.jkoscf (mgr.14182) 1489 : cluster [DBG] pgmap v966: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:38.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:37 smithi195 bash[19846]: audit 2024-01-24T03:23:36.024751+0000 mgr.smithi152.jkoscf (mgr.14182) 1488 : audit [DBG] from='client.15746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:38.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:37 smithi195 bash[19846]: cluster 2024-01-24T03:23:36.573134+0000 mgr.smithi152.jkoscf (mgr.14182) 1489 : cluster [DBG] pgmap v966: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:40.129 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:39 smithi152 bash[16344]: cluster 2024-01-24T03:23:38.574504+0000 mgr.smithi152.jkoscf (mgr.14182) 1490 : cluster [DBG] pgmap v967: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:23:40.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:39 smithi195 bash[19846]: cluster 2024-01-24T03:23:38.574504+0000 mgr.smithi152.jkoscf (mgr.14182) 1490 : cluster [DBG] pgmap v967: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:23:40.980 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:23:40.980 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:23:41.568 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:23:42.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:41 smithi152 bash[16344]: cluster 2024-01-24T03:23:40.575896+0000 mgr.smithi152.jkoscf (mgr.14182) 1491 : cluster [DBG] pgmap v968: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:42.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:41 smithi152 bash[16344]: audit 2024-01-24T03:23:40.967529+0000 mgr.smithi152.jkoscf (mgr.14182) 1492 : audit [DBG] from='client.15750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:42.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:41 smithi195 bash[19846]: cluster 2024-01-24T03:23:40.575896+0000 mgr.smithi152.jkoscf (mgr.14182) 1491 : cluster [DBG] pgmap v968: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:42.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:41 smithi195 bash[19846]: audit 2024-01-24T03:23:40.967529+0000 mgr.smithi152.jkoscf (mgr.14182) 1492 : audit [DBG] from='client.15750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:42.570 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:23:44.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:43 smithi152 bash[16344]: cluster 2024-01-24T03:23:42.577735+0000 mgr.smithi152.jkoscf (mgr.14182) 1493 : cluster [DBG] pgmap v969: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:44.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:43 smithi195 bash[19846]: cluster 2024-01-24T03:23:42.577735+0000 mgr.smithi152.jkoscf (mgr.14182) 1493 : cluster [DBG] pgmap v969: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:45.699 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:23:45.699 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:23:46.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:45 smithi152 bash[16344]: cluster 2024-01-24T03:23:44.578818+0000 mgr.smithi152.jkoscf (mgr.14182) 1494 : cluster [DBG] pgmap v970: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:45 smithi195 bash[19846]: cluster 2024-01-24T03:23:44.578818+0000 mgr.smithi152.jkoscf (mgr.14182) 1494 : cluster [DBG] pgmap v970: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:46.290 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:23:47.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:46 smithi195 bash[19846]: audit 2024-01-24T03:23:45.691533+0000 mgr.smithi152.jkoscf (mgr.14182) 1495 : audit [DBG] from='client.15754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:47.291 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:23:47.304 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:46 smithi152 bash[16344]: audit 2024-01-24T03:23:45.691533+0000 mgr.smithi152.jkoscf (mgr.14182) 1495 : audit [DBG] from='client.15754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:48.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:47 smithi195 bash[19846]: cluster 2024-01-24T03:23:46.580572+0000 mgr.smithi152.jkoscf (mgr.14182) 1496 : cluster [DBG] pgmap v971: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:48.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:47 smithi152 bash[16344]: cluster 2024-01-24T03:23:46.580572+0000 mgr.smithi152.jkoscf (mgr.14182) 1496 : cluster [DBG] pgmap v971: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:49.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:48 smithi152 bash[16344]: audit 2024-01-24T03:23:48.534591+0000 mon.smithi152 (mon.0) 1012 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:23:49.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:48 smithi152 bash[16344]: audit 2024-01-24T03:23:48.820307+0000 mon.smithi152 (mon.0) 1013 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:23:49.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:48 smithi195 bash[19846]: audit 2024-01-24T03:23:48.534591+0000 mon.smithi152 (mon.0) 1012 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:23:49.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:48 smithi195 bash[19846]: audit 2024-01-24T03:23:48.820307+0000 mon.smithi152 (mon.0) 1013 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:23:50.192 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:49 smithi152 bash[16344]: cluster 2024-01-24T03:23:48.581639+0000 mgr.smithi152.jkoscf (mgr.14182) 1497 : cluster [DBG] pgmap v972: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:23:50.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:49 smithi195 bash[19846]: cluster 2024-01-24T03:23:48.581639+0000 mgr.smithi152.jkoscf (mgr.14182) 1497 : cluster [DBG] pgmap v972: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:23:50.556 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:23:50.556 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:13:27.656493Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:13:27.656879Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:13:27.657164Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:13:27.657426Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:13:27.657926Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:13:27.657677Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:13:27.658951Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:23:51.131 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:23:52.132 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:23:52.145 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:51 smithi152 bash[16344]: audit 2024-01-24T03:23:50.541159+0000 mgr.smithi152.jkoscf (mgr.14182) 1498 : audit [DBG] from='client.15758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:52.146 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:51 smithi152 bash[16344]: cluster 2024-01-24T03:23:50.583434+0000 mgr.smithi152.jkoscf (mgr.14182) 1499 : cluster [DBG] pgmap v973: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:52.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:51 smithi195 bash[19846]: audit 2024-01-24T03:23:50.541159+0000 mgr.smithi152.jkoscf (mgr.14182) 1498 : audit [DBG] from='client.15758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:52.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:51 smithi195 bash[19846]: cluster 2024-01-24T03:23:50.583434+0000 mgr.smithi152.jkoscf (mgr.14182) 1499 : cluster [DBG] pgmap v973: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:54.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:53 smithi195 bash[19846]: cluster 2024-01-24T03:23:52.585282+0000 mgr.smithi152.jkoscf (mgr.14182) 1500 : cluster [DBG] pgmap v974: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:54.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:53 smithi152 bash[16344]: cluster 2024-01-24T03:23:52.585282+0000 mgr.smithi152.jkoscf (mgr.14182) 1500 : cluster [DBG] pgmap v974: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:55.372 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:23:55.372 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:21:32.785576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.maitwa on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:23:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:55 smithi195 bash[19846]: audit 2024-01-24T03:23:54.407678+0000 mon.smithi152 (mon.0) 1014 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:23:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:55 smithi195 bash[19846]: cluster 2024-01-24T03:23:54.586159+0000 mgr.smithi152.jkoscf (mgr.14182) 1501 : cluster [DBG] pgmap v975: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:55 smithi195 bash[19846]: audit 2024-01-24T03:23:54.707573+0000 mon.smithi152 (mon.0) 1015 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:23:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:55 smithi195 bash[19846]: audit 2024-01-24T03:23:54.709369+0000 mon.smithi152 (mon.0) 1016 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:23:55.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:55 smithi195 bash[19846]: audit 2024-01-24T03:23:54.719822+0000 mon.smithi152 (mon.0) 1017 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:23:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:55 smithi195 bash[19846]: cluster 2024-01-24T03:23:54.720703+0000 mgr.smithi152.jkoscf (mgr.14182) 1502 : cluster [DBG] pgmap v976: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:23:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:55 smithi195 bash[19846]: audit 2024-01-24T03:23:54.728456+0000 mon.smithi152 (mon.0) 1018 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:23:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:55 smithi195 bash[19846]: audit 2024-01-24T03:23:54.741509+0000 mon.smithi152 (mon.0) 1019 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:23:55.742 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:55 smithi195 bash[19846]: cephadm 2024-01-24T03:23:54.744990+0000 mgr.smithi152.jkoscf (mgr.14182) 1503 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.xkxaew on smithi195 2024-01-24T03:23:55.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:55 smithi152 bash[16344]: audit 2024-01-24T03:23:54.407678+0000 mon.smithi152 (mon.0) 1014 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:23:55.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:55 smithi152 bash[16344]: cluster 2024-01-24T03:23:54.586159+0000 mgr.smithi152.jkoscf (mgr.14182) 1501 : cluster [DBG] pgmap v975: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:23:55.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:55 smithi152 bash[16344]: audit 2024-01-24T03:23:54.707573+0000 mon.smithi152 (mon.0) 1015 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:23:55.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:55 smithi152 bash[16344]: audit 2024-01-24T03:23:54.709369+0000 mon.smithi152 (mon.0) 1016 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:23:55.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:55 smithi152 bash[16344]: audit 2024-01-24T03:23:54.719822+0000 mon.smithi152 (mon.0) 1017 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:23:55.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:55 smithi152 bash[16344]: cluster 2024-01-24T03:23:54.720703+0000 mgr.smithi152.jkoscf (mgr.14182) 1502 : cluster [DBG] pgmap v976: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:23:55.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:55 smithi152 bash[16344]: audit 2024-01-24T03:23:54.728456+0000 mon.smithi152 (mon.0) 1018 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:23:55.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:55 smithi152 bash[16344]: audit 2024-01-24T03:23:54.741509+0000 mon.smithi152 (mon.0) 1019 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:23:55.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:55 smithi152 bash[16344]: cephadm 2024-01-24T03:23:54.744990+0000 mgr.smithi152.jkoscf (mgr.14182) 1503 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.xkxaew on smithi195 2024-01-24T03:23:56.019 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:23:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:56 smithi195 bash[19846]: audit 2024-01-24T03:23:55.364591+0000 mgr.smithi152.jkoscf (mgr.14182) 1504 : audit [DBG] from='client.15762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:56 smithi195 bash[19846]: cluster 2024-01-24T03:23:55.403968+0000 mon.smithi152 (mon.0) 1020 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:23:56.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:56 smithi195 bash[19846]: cluster 2024-01-24T03:23:55.404034+0000 mon.smithi152 (mon.0) 1021 : cluster [INF] Cluster is now healthy 2024-01-24T03:23:56.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:56 smithi152 bash[16344]: audit 2024-01-24T03:23:55.364591+0000 mgr.smithi152.jkoscf (mgr.14182) 1504 : audit [DBG] from='client.15762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:23:56.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:56 smithi152 bash[16344]: cluster 2024-01-24T03:23:55.403968+0000 mon.smithi152 (mon.0) 1020 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:23:56.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:56 smithi152 bash[16344]: cluster 2024-01-24T03:23:55.404034+0000 mon.smithi152 (mon.0) 1021 : cluster [INF] Cluster is now healthy 2024-01-24T03:23:57.020 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:23:57.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:57 smithi195 bash[19846]: cluster 2024-01-24T03:23:56.722166+0000 mgr.smithi152.jkoscf (mgr.14182) 1505 : cluster [DBG] pgmap v977: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:23:57.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:57 smithi152 bash[16344]: cluster 2024-01-24T03:23:56.722166+0000 mgr.smithi152.jkoscf (mgr.14182) 1505 : cluster [DBG] pgmap v977: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:23:58.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:58 smithi195 bash[19846]: audit 2024-01-24T03:23:58.654680+0000 mon.smithi152 (mon.0) 1022 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.xkxaew"}]: dispatch 2024-01-24T03:23:59.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:58 smithi152 bash[16344]: audit 2024-01-24T03:23:58.654680+0000 mon.smithi152 (mon.0) 1022 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.xkxaew"}]: dispatch 2024-01-24T03:23:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: cephadm 2024-01-24T03:23:58.653735+0000 mgr.smithi152.jkoscf (mgr.14182) 1506 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew 2024-01-24T03:23:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:23:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew 2024-01-24T03:23:59.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew 2024-01-24T03:23:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:23:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew 2024-01-24T03:23:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.xkxaew ... 2024-01-24T03:23:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:23:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:23:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:23:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:23:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:23:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:23:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:23:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:23:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:23:59.992 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.xkxaew ... 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: cephadm 2024-01-24T03:23:58.654131+0000 mgr.smithi152.jkoscf (mgr.14182) 1507 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.xkxaew 2024-01-24T03:23:59.993 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: cephadm 2024-01-24T03:23:58.655778+0000 mgr.smithi152.jkoscf (mgr.14182) 1508 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew 2024-01-24T03:23:59.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:23:59.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew 2024-01-24T03:23:59.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew 2024-01-24T03:23:59.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:23:59.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew 2024-01-24T03:23:59.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.xkxaew ... 2024-01-24T03:23:59.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:23:59.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:23:59.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:23:59.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:23:59.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:23:59.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: cephadm 2024-01-24T03:23:58.658124+0000 mgr.smithi152.jkoscf (mgr.14182) 1509 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.jmxvbg on smithi152 2024-01-24T03:23:59.994 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:23:59 smithi195 bash[19846]: cluster 2024-01-24T03:23:58.722941+0000 mgr.smithi152.jkoscf (mgr.14182) 1510 : cluster [DBG] pgmap v978: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:24:00.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: cephadm 2024-01-24T03:23:58.653735+0000 mgr.smithi152.jkoscf (mgr.14182) 1506 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew 2024-01-24T03:24:00.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:24:00.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew 2024-01-24T03:24:00.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew 2024-01-24T03:24:00.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:24:00.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew 2024-01-24T03:24:00.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.xkxaew ... 2024-01-24T03:24:00.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:00.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:24:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:24:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:24:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:24:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:24:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:24:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:24:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:24:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew 2024-01-24T03:24:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:24:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew 2024-01-24T03:24:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew 2024-01-24T03:24:00.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.xkxaew ... 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: cephadm 2024-01-24T03:23:58.654131+0000 mgr.smithi152.jkoscf (mgr.14182) 1507 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.xkxaew 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: cephadm 2024-01-24T03:23:58.655778+0000 mgr.smithi152.jkoscf (mgr.14182) 1508 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:24:00.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew 2024-01-24T03:24:00.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.xkxaew ... 2024-01-24T03:24:00.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:00.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:24:00.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:24:00.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:24:00.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:00.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: cephadm 2024-01-24T03:23:58.658124+0000 mgr.smithi152.jkoscf (mgr.14182) 1509 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.jmxvbg on smithi152 2024-01-24T03:24:00.085 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:23:59 smithi152 bash[16344]: cluster 2024-01-24T03:23:58.722941+0000 mgr.smithi152.jkoscf (mgr.14182) 1510 : cluster [DBG] pgmap v978: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:24:00.602 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:24:00.602 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:44.624581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.ievusa on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-ievusa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.ievusa\nDeploy daemon haproxy.nfs.foo.smithi195.ievusa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.524403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.zeowog on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-zeowog\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.zeowog\nDeploy daemon haproxy.nfs.foo.smithi152.zeowog ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:22:48.527618Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ybzavw on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:24:01.269 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:24:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:01 smithi195 bash[19846]: audit 2024-01-24T03:24:00.589964+0000 mgr.smithi152.jkoscf (mgr.14182) 1511 : audit [DBG] from='client.15766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:01.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:01 smithi195 bash[19846]: cluster 2024-01-24T03:24:00.724272+0000 mgr.smithi152.jkoscf (mgr.14182) 1512 : cluster [DBG] pgmap v979: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:24:02.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:01 smithi152 bash[16344]: audit 2024-01-24T03:24:00.589964+0000 mgr.smithi152.jkoscf (mgr.14182) 1511 : audit [DBG] from='client.15766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:02.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:01 smithi152 bash[16344]: cluster 2024-01-24T03:24:00.724272+0000 mgr.smithi152.jkoscf (mgr.14182) 1512 : cluster [DBG] pgmap v979: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:24:02.271 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:24:03.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: cluster 2024-01-24T03:24:02.724894+0000 mgr.smithi152.jkoscf (mgr.14182) 1513 : cluster [DBG] pgmap v980: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:24:03.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: cephadm 2024-01-24T03:24:02.755369+0000 mgr.smithi152.jkoscf (mgr.14182) 1514 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg 2024-01-24T03:24:03.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:24:03.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg 2024-01-24T03:24:03.832 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.jmxvbg ... 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:24:03.833 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg 2024-01-24T03:24:03.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:24:03.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg 2024-01-24T03:24:03.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:03.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:24:03.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:03.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.jmxvbg ... 2024-01-24T03:24:03.834 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:03.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:24:03.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:24:03.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:24:03.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:03.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: cephadm 2024-01-24T03:24:02.755686+0000 mgr.smithi152.jkoscf (mgr.14182) 1515 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:03.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: audit 2024-01-24T03:24:02.756360+0000 mon.smithi152 (mon.0) 1023 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.jmxvbg"}]: dispatch 2024-01-24T03:24:03.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: cephadm 2024-01-24T03:24:02.757832+0000 mgr.smithi152.jkoscf (mgr.14182) 1516 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg 2024-01-24T03:24:03.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:24:03.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg 2024-01-24T03:24:03.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:03.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:24:03.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:03.835 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi152.jmxvbg ... 2024-01-24T03:24:03.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:03.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:24:03.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:24:03.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:24:03.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:03.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: cephadm 2024-01-24T03:24:02.760568+0000 mgr.smithi152.jkoscf (mgr.14182) 1517 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:24:03.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: cephadm 2024-01-24T03:24:02.762782+0000 mgr.smithi152.jkoscf (mgr.14182) 1518 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:24:03.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: cluster 2024-01-24T03:24:02.763637+0000 mgr.smithi152.jkoscf (mgr.14182) 1519 : cluster [DBG] pgmap v981: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 125 B/s rd, 0 op/s 2024-01-24T03:24:03.836 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:03 smithi152 bash[16344]: audit 2024-01-24T03:24:03.159235+0000 mon.smithi152 (mon.0) 1024 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:24:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: cluster 2024-01-24T03:24:02.724894+0000 mgr.smithi152.jkoscf (mgr.14182) 1513 : cluster [DBG] pgmap v980: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-24T03:24:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: cephadm 2024-01-24T03:24:02.755369+0000 mgr.smithi152.jkoscf (mgr.14182) 1514 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg 2024-01-24T03:24:04.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:24:04.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg 2024-01-24T03:24:04.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:04.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:24:04.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:04.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.jmxvbg ... 2024-01-24T03:24:04.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:04.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:24:04.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:24:04.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:24:04.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:04.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.jmxvbg ... 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:24:04.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:24:04.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:24:04.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:04.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: cephadm 2024-01-24T03:24:02.755686+0000 mgr.smithi152.jkoscf (mgr.14182) 1515 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:04.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: audit 2024-01-24T03:24:02.756360+0000 mon.smithi152 (mon.0) 1023 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi152.jmxvbg"}]: dispatch 2024-01-24T03:24:04.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: cephadm 2024-01-24T03:24:02.757832+0000 mgr.smithi152.jkoscf (mgr.14182) 1516 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg 2024-01-24T03:24:04.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:24:04.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg 2024-01-24T03:24:04.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:04.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:24:04.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg 2024-01-24T03:24:04.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi152.jmxvbg ... 2024-01-24T03:24:04.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:04.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:24:04.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:24:04.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:24:04.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:24:04.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: cephadm 2024-01-24T03:24:02.760568+0000 mgr.smithi152.jkoscf (mgr.14182) 1517 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:24:04.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: cephadm 2024-01-24T03:24:02.762782+0000 mgr.smithi152.jkoscf (mgr.14182) 1518 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-24T03:24:04.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: cluster 2024-01-24T03:24:02.763637+0000 mgr.smithi152.jkoscf (mgr.14182) 1519 : cluster [DBG] pgmap v981: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 125 B/s rd, 0 op/s 2024-01-24T03:24:04.245 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:03 smithi195 bash[19846]: audit 2024-01-24T03:24:03.159235+0000 mon.smithi152 (mon.0) 1024 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:24:05.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:04 smithi152 bash[16344]: cluster 2024-01-24T03:24:03.734627+0000 mon.smithi152 (mon.0) 1025 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:24:05.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:04 smithi195 bash[19846]: cluster 2024-01-24T03:24:03.734627+0000 mon.smithi152 (mon.0) 1025 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-24T03:24:05.623 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:24:05.623 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:24:06.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:05 smithi152 bash[16344]: cluster 2024-01-24T03:24:04.765287+0000 mgr.smithi152.jkoscf (mgr.14182) 1520 : cluster [DBG] pgmap v982: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:24:06.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:05 smithi195 bash[19846]: cluster 2024-01-24T03:24:04.765287+0000 mgr.smithi152.jkoscf (mgr.14182) 1520 : cluster [DBG] pgmap v982: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:24:06.275 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:24:07.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:06 smithi152 bash[16344]: audit 2024-01-24T03:24:05.607567+0000 mgr.smithi152.jkoscf (mgr.14182) 1521 : audit [DBG] from='client.15770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:07.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:06 smithi195 bash[19846]: audit 2024-01-24T03:24:05.607567+0000 mgr.smithi152.jkoscf (mgr.14182) 1521 : audit [DBG] from='client.15770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:07.276 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:24:08.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:07 smithi152 bash[16344]: cluster 2024-01-24T03:24:06.767009+0000 mgr.smithi152.jkoscf (mgr.14182) 1522 : cluster [DBG] pgmap v983: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:24:08.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:07 smithi195 bash[19846]: cluster 2024-01-24T03:24:06.767009+0000 mgr.smithi152.jkoscf (mgr.14182) 1522 : cluster [DBG] pgmap v983: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:24:09.990 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:09 smithi195 bash[19846]: cluster 2024-01-24T03:24:08.768355+0000 mgr.smithi152.jkoscf (mgr.14182) 1523 : cluster [DBG] pgmap v984: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:24:10.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:09 smithi152 bash[16344]: cluster 2024-01-24T03:24:08.768355+0000 mgr.smithi152.jkoscf (mgr.14182) 1523 : cluster [DBG] pgmap v984: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:24:10.522 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:24:10.522 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:24:11.197 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:24:12.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:11 smithi152 bash[16344]: audit 2024-01-24T03:24:10.508522+0000 mgr.smithi152.jkoscf (mgr.14182) 1524 : audit [DBG] from='client.15774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:12.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:11 smithi152 bash[16344]: cluster 2024-01-24T03:24:10.770638+0000 mgr.smithi152.jkoscf (mgr.14182) 1525 : cluster [DBG] pgmap v985: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:24:12.198 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:24:12.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:11 smithi195 bash[19846]: audit 2024-01-24T03:24:10.508522+0000 mgr.smithi152.jkoscf (mgr.14182) 1524 : audit [DBG] from='client.15774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:12.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:11 smithi195 bash[19846]: cluster 2024-01-24T03:24:10.770638+0000 mgr.smithi152.jkoscf (mgr.14182) 1525 : cluster [DBG] pgmap v985: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:24:14.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:13 smithi152 bash[16344]: cluster 2024-01-24T03:24:12.771996+0000 mgr.smithi152.jkoscf (mgr.14182) 1526 : cluster [DBG] pgmap v986: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:24:14.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:13 smithi195 bash[19846]: cluster 2024-01-24T03:24:12.771996+0000 mgr.smithi152.jkoscf (mgr.14182) 1526 : cluster [DBG] pgmap v986: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-24T03:24:15.430 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:24:15.431 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:24:16.071 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:24:16.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:15 smithi195 bash[19846]: cluster 2024-01-24T03:24:14.773761+0000 mgr.smithi152.jkoscf (mgr.14182) 1527 : cluster [DBG] pgmap v987: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:16.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:15 smithi152 bash[16344]: cluster 2024-01-24T03:24:14.773761+0000 mgr.smithi152.jkoscf (mgr.14182) 1527 : cluster [DBG] pgmap v987: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:17.072 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:24:17.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:16 smithi195 bash[19846]: audit 2024-01-24T03:24:15.420069+0000 mgr.smithi152.jkoscf (mgr.14182) 1528 : audit [DBG] from='client.15778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:17.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:16 smithi152 bash[16344]: audit 2024-01-24T03:24:15.420069+0000 mgr.smithi152.jkoscf (mgr.14182) 1528 : audit [DBG] from='client.15778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:18.238 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:17 smithi152 bash[16344]: cluster 2024-01-24T03:24:16.775686+0000 mgr.smithi152.jkoscf (mgr.14182) 1529 : cluster [DBG] pgmap v988: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:24:18.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:17 smithi195 bash[19846]: cluster 2024-01-24T03:24:16.775686+0000 mgr.smithi152.jkoscf (mgr.14182) 1529 : cluster [DBG] pgmap v988: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:24:19.991 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:19 smithi195 bash[19846]: cluster 2024-01-24T03:24:18.776989+0000 mgr.smithi152.jkoscf (mgr.14182) 1530 : cluster [DBG] pgmap v989: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:24:20.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:19 smithi152 bash[16344]: cluster 2024-01-24T03:24:18.776989+0000 mgr.smithi152.jkoscf (mgr.14182) 1530 : cluster [DBG] pgmap v989: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:24:20.234 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:24:20.234 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:24:20.893 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:24:21.894 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:24:22.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:21 smithi195 bash[19846]: audit 2024-01-24T03:24:20.221697+0000 mgr.smithi152.jkoscf (mgr.14182) 1531 : audit [DBG] from='client.15782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:22.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:21 smithi195 bash[19846]: cluster 2024-01-24T03:24:20.779010+0000 mgr.smithi152.jkoscf (mgr.14182) 1532 : cluster [DBG] pgmap v990: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:22.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:21 smithi152 bash[16344]: audit 2024-01-24T03:24:20.221697+0000 mgr.smithi152.jkoscf (mgr.14182) 1531 : audit [DBG] from='client.15782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:22.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:21 smithi152 bash[16344]: cluster 2024-01-24T03:24:20.779010+0000 mgr.smithi152.jkoscf (mgr.14182) 1532 : cluster [DBG] pgmap v990: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:24.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:23 smithi195 bash[19846]: cluster 2024-01-24T03:24:22.780402+0000 mgr.smithi152.jkoscf (mgr.14182) 1533 : cluster [DBG] pgmap v991: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:24.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:23 smithi152 bash[16344]: cluster 2024-01-24T03:24:22.780402+0000 mgr.smithi152.jkoscf (mgr.14182) 1533 : cluster [DBG] pgmap v991: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:25.196 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:24:25.197 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:24:25.775 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:24:26.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:25 smithi152 bash[16344]: cluster 2024-01-24T03:24:24.781882+0000 mgr.smithi152.jkoscf (mgr.14182) 1534 : cluster [DBG] pgmap v992: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:26.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:25 smithi195 bash[19846]: cluster 2024-01-24T03:24:24.781882+0000 mgr.smithi152.jkoscf (mgr.14182) 1534 : cluster [DBG] pgmap v992: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:26.776 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:24:27.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:26 smithi152 bash[16344]: audit 2024-01-24T03:24:25.181829+0000 mgr.smithi152.jkoscf (mgr.14182) 1535 : audit [DBG] from='client.15786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:27.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:26 smithi195 bash[19846]: audit 2024-01-24T03:24:25.181829+0000 mgr.smithi152.jkoscf (mgr.14182) 1535 : audit [DBG] from='client.15786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:28.180 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:27 smithi152 bash[16344]: cluster 2024-01-24T03:24:26.783683+0000 mgr.smithi152.jkoscf (mgr.14182) 1536 : cluster [DBG] pgmap v993: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:24:28.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:27 smithi195 bash[19846]: cluster 2024-01-24T03:24:26.783683+0000 mgr.smithi152.jkoscf (mgr.14182) 1536 : cluster [DBG] pgmap v993: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:24:29.965 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:24:29.965 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:24:30.030 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:29 smithi152 bash[16344]: cluster 2024-01-24T03:24:28.785093+0000 mgr.smithi152.jkoscf (mgr.14182) 1537 : cluster [DBG] pgmap v994: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:30.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:29 smithi195 bash[19846]: cluster 2024-01-24T03:24:28.785093+0000 mgr.smithi152.jkoscf (mgr.14182) 1537 : cluster [DBG] pgmap v994: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:30.539 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:24:30.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:30 smithi152 bash[16344]: audit 2024-01-24T03:24:29.952440+0000 mgr.smithi152.jkoscf (mgr.14182) 1538 : audit [DBG] from='client.15790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:31.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:30 smithi195 bash[19846]: audit 2024-01-24T03:24:29.952440+0000 mgr.smithi152.jkoscf (mgr.14182) 1538 : audit [DBG] from='client.15790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:31.540 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:24:31.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:31 smithi152 bash[16344]: cluster 2024-01-24T03:24:30.787216+0000 mgr.smithi152.jkoscf (mgr.14182) 1539 : cluster [DBG] pgmap v995: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:32.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:31 smithi195 bash[19846]: cluster 2024-01-24T03:24:30.787216+0000 mgr.smithi152.jkoscf (mgr.14182) 1539 : cluster [DBG] pgmap v995: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:34.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:33 smithi195 bash[19846]: cluster 2024-01-24T03:24:32.788593+0000 mgr.smithi152.jkoscf (mgr.14182) 1540 : cluster [DBG] pgmap v996: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:34.340 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:33 smithi152 bash[16344]: cluster 2024-01-24T03:24:32.788593+0000 mgr.smithi152.jkoscf (mgr.14182) 1540 : cluster [DBG] pgmap v996: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:34.815 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:24:34.815 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:24:35.413 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:24:36.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:35 smithi195 bash[19846]: cluster 2024-01-24T03:24:34.790444+0000 mgr.smithi152.jkoscf (mgr.14182) 1541 : cluster [DBG] pgmap v997: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:36.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:35 smithi195 bash[19846]: audit 2024-01-24T03:24:34.807464+0000 mgr.smithi152.jkoscf (mgr.14182) 1542 : audit [DBG] from='client.15794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:36.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:35 smithi152 bash[16344]: cluster 2024-01-24T03:24:34.790444+0000 mgr.smithi152.jkoscf (mgr.14182) 1541 : cluster [DBG] pgmap v997: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:36.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:35 smithi152 bash[16344]: audit 2024-01-24T03:24:34.807464+0000 mgr.smithi152.jkoscf (mgr.14182) 1542 : audit [DBG] from='client.15794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:36.415 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:24:38.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:37 smithi152 bash[16344]: cluster 2024-01-24T03:24:36.792244+0000 mgr.smithi152.jkoscf (mgr.14182) 1543 : cluster [DBG] pgmap v998: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:24:38.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:37 smithi195 bash[19846]: cluster 2024-01-24T03:24:36.792244+0000 mgr.smithi152.jkoscf (mgr.14182) 1543 : cluster [DBG] pgmap v998: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:24:39.597 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:24:39.597 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:24:40.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:39 smithi152 bash[16344]: cluster 2024-01-24T03:24:38.793084+0000 mgr.smithi152.jkoscf (mgr.14182) 1544 : cluster [DBG] pgmap v999: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:40.196 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:39 smithi195 bash[19846]: cluster 2024-01-24T03:24:38.793084+0000 mgr.smithi152.jkoscf (mgr.14182) 1544 : cluster [DBG] pgmap v999: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:40.270 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:24:41.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:40 smithi152 bash[16344]: audit 2024-01-24T03:24:39.588203+0000 mgr.smithi152.jkoscf (mgr.14182) 1545 : audit [DBG] from='client.15798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:41.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:40 smithi195 bash[19846]: audit 2024-01-24T03:24:39.588203+0000 mgr.smithi152.jkoscf (mgr.14182) 1545 : audit [DBG] from='client.15798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:41.271 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:24:42.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:41 smithi152 bash[16344]: cluster 2024-01-24T03:24:40.795016+0000 mgr.smithi152.jkoscf (mgr.14182) 1546 : cluster [DBG] pgmap v1000: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:42.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:41 smithi195 bash[19846]: cluster 2024-01-24T03:24:40.795016+0000 mgr.smithi152.jkoscf (mgr.14182) 1546 : cluster [DBG] pgmap v1000: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:44.173 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:43 smithi152 bash[16344]: cluster 2024-01-24T03:24:42.795974+0000 mgr.smithi152.jkoscf (mgr.14182) 1547 : cluster [DBG] pgmap v1001: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:44.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:43 smithi195 bash[19846]: cluster 2024-01-24T03:24:42.795974+0000 mgr.smithi152.jkoscf (mgr.14182) 1547 : cluster [DBG] pgmap v1001: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:44.622 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:24:44.622 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:24:45.298 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:24:46.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:45 smithi195 bash[19846]: audit 2024-01-24T03:24:44.614566+0000 mgr.smithi152.jkoscf (mgr.14182) 1548 : audit [DBG] from='client.15802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:46.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:45 smithi195 bash[19846]: cluster 2024-01-24T03:24:44.797670+0000 mgr.smithi152.jkoscf (mgr.14182) 1549 : cluster [DBG] pgmap v1002: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:46.299 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:24:46.312 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:45 smithi152 bash[16344]: audit 2024-01-24T03:24:44.614566+0000 mgr.smithi152.jkoscf (mgr.14182) 1548 : audit [DBG] from='client.15802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:46.312 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:45 smithi152 bash[16344]: cluster 2024-01-24T03:24:44.797670+0000 mgr.smithi152.jkoscf (mgr.14182) 1549 : cluster [DBG] pgmap v1002: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:48.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:47 smithi152 bash[16344]: cluster 2024-01-24T03:24:46.798879+0000 mgr.smithi152.jkoscf (mgr.14182) 1550 : cluster [DBG] pgmap v1003: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:24:48.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:47 smithi195 bash[19846]: cluster 2024-01-24T03:24:46.798879+0000 mgr.smithi152.jkoscf (mgr.14182) 1550 : cluster [DBG] pgmap v1003: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:24:49.474 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:24:49.474 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:24:49.831 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:49 smithi152 bash[16344]: cluster 2024-01-24T03:24:48.800154+0000 mgr.smithi152.jkoscf (mgr.14182) 1551 : cluster [DBG] pgmap v1004: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:50.083 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:24:50.195 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:49 smithi195 bash[19846]: cluster 2024-01-24T03:24:48.800154+0000 mgr.smithi152.jkoscf (mgr.14182) 1551 : cluster [DBG] pgmap v1004: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:51.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:50 smithi152 bash[16344]: audit 2024-01-24T03:24:49.461033+0000 mgr.smithi152.jkoscf (mgr.14182) 1552 : audit [DBG] from='client.15806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:51.084 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:24:51.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:50 smithi195 bash[19846]: audit 2024-01-24T03:24:49.461033+0000 mgr.smithi152.jkoscf (mgr.14182) 1552 : audit [DBG] from='client.15806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:52.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:51 smithi152 bash[16344]: cluster 2024-01-24T03:24:50.802042+0000 mgr.smithi152.jkoscf (mgr.14182) 1553 : cluster [DBG] pgmap v1005: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:52.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:51 smithi195 bash[19846]: cluster 2024-01-24T03:24:50.802042+0000 mgr.smithi152.jkoscf (mgr.14182) 1553 : cluster [DBG] pgmap v1005: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:54.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:53 smithi152 bash[16344]: cluster 2024-01-24T03:24:52.803492+0000 mgr.smithi152.jkoscf (mgr.14182) 1554 : cluster [DBG] pgmap v1006: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:54.173 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:24:54.173 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:24:54.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:53 smithi195 bash[19846]: cluster 2024-01-24T03:24:52.803492+0000 mgr.smithi152.jkoscf (mgr.14182) 1554 : cluster [DBG] pgmap v1006: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:54.806 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:24:55.807 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:24:56.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:55 smithi152 bash[16344]: audit 2024-01-24T03:24:54.165750+0000 mgr.smithi152.jkoscf (mgr.14182) 1555 : audit [DBG] from='client.15810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:56.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:55 smithi152 bash[16344]: cluster 2024-01-24T03:24:54.804632+0000 mgr.smithi152.jkoscf (mgr.14182) 1556 : cluster [DBG] pgmap v1007: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:56.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:55 smithi195 bash[19846]: audit 2024-01-24T03:24:54.165750+0000 mgr.smithi152.jkoscf (mgr.14182) 1555 : audit [DBG] from='client.15810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:24:56.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:55 smithi195 bash[19846]: cluster 2024-01-24T03:24:54.804632+0000 mgr.smithi152.jkoscf (mgr.14182) 1556 : cluster [DBG] pgmap v1007: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:24:58.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:57 smithi195 bash[19846]: cluster 2024-01-24T03:24:56.805793+0000 mgr.smithi152.jkoscf (mgr.14182) 1557 : cluster [DBG] pgmap v1008: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:24:58.331 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:57 smithi152 bash[16344]: cluster 2024-01-24T03:24:56.805793+0000 mgr.smithi152.jkoscf (mgr.14182) 1557 : cluster [DBG] pgmap v1008: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-24T03:24:59.033 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:24:59.033 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:24:59.657 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:25:00.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:24:59 smithi152 bash[16344]: cluster 2024-01-24T03:24:58.807132+0000 mgr.smithi152.jkoscf (mgr.14182) 1558 : cluster [DBG] pgmap v1009: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:25:00.195 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:24:59 smithi195 bash[19846]: cluster 2024-01-24T03:24:58.807132+0000 mgr.smithi152.jkoscf (mgr.14182) 1558 : cluster [DBG] pgmap v1009: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:25:00.658 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:25:01.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:00 smithi152 bash[16344]: audit 2024-01-24T03:24:59.021484+0000 mgr.smithi152.jkoscf (mgr.14182) 1559 : audit [DBG] from='client.15814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:25:01.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:00 smithi195 bash[19846]: audit 2024-01-24T03:24:59.021484+0000 mgr.smithi152.jkoscf (mgr.14182) 1559 : audit [DBG] from='client.15814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:25:02.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:01 smithi152 bash[16344]: cluster 2024-01-24T03:25:00.808687+0000 mgr.smithi152.jkoscf (mgr.14182) 1560 : cluster [DBG] pgmap v1010: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:25:02.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:01 smithi195 bash[19846]: cluster 2024-01-24T03:25:00.808687+0000 mgr.smithi152.jkoscf (mgr.14182) 1560 : cluster [DBG] pgmap v1010: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:25:03.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:02 smithi152 bash[16344]: audit 2024-01-24T03:25:02.766752+0000 mon.smithi152 (mon.0) 1026 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:25:03.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:02 smithi195 bash[19846]: audit 2024-01-24T03:25:02.766752+0000 mon.smithi152 (mon.0) 1026 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-24T03:25:04.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:03 smithi152 bash[16344]: cluster 2024-01-24T03:25:02.809777+0000 mgr.smithi152.jkoscf (mgr.14182) 1561 : cluster [DBG] pgmap v1011: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:25:04.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:03 smithi152 bash[16344]: audit 2024-01-24T03:25:03.077900+0000 mon.smithi152 (mon.0) 1027 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:25:04.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:03 smithi152 bash[16344]: audit 2024-01-24T03:25:03.390987+0000 mon.smithi152 (mon.0) 1028 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:25:04.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:03 smithi152 bash[16344]: audit 2024-01-24T03:25:03.392517+0000 mon.smithi152 (mon.0) 1029 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:25:04.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:03 smithi152 bash[16344]: audit 2024-01-24T03:25:03.401214+0000 mon.smithi152 (mon.0) 1030 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:25:04.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:03 smithi152 bash[16344]: audit 2024-01-24T03:25:03.407691+0000 mon.smithi152 (mon.0) 1031 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:25:04.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:03 smithi152 bash[16344]: audit 2024-01-24T03:25:03.420601+0000 mon.smithi152 (mon.0) 1032 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:25:04.082 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:25:04.082 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:22:48.530452Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.qybzva on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:25:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:03 smithi195 bash[19846]: cluster 2024-01-24T03:25:02.809777+0000 mgr.smithi152.jkoscf (mgr.14182) 1561 : cluster [DBG] pgmap v1011: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-24T03:25:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:03 smithi195 bash[19846]: audit 2024-01-24T03:25:03.077900+0000 mon.smithi152 (mon.0) 1027 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:25:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:03 smithi195 bash[19846]: audit 2024-01-24T03:25:03.390987+0000 mon.smithi152 (mon.0) 1028 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-24T03:25:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:03 smithi195 bash[19846]: audit 2024-01-24T03:25:03.392517+0000 mon.smithi152 (mon.0) 1029 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-24T03:25:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:03 smithi195 bash[19846]: audit 2024-01-24T03:25:03.401214+0000 mon.smithi152 (mon.0) 1030 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:25:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:03 smithi195 bash[19846]: audit 2024-01-24T03:25:03.407691+0000 mon.smithi152 (mon.0) 1031 : audit [DBG] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-24T03:25:04.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:03 smithi195 bash[19846]: audit 2024-01-24T03:25:03.420601+0000 mon.smithi152 (mon.0) 1032 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:25:04.671 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:25:05.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:04 smithi152 bash[16344]: cluster 2024-01-24T03:25:03.402061+0000 mgr.smithi152.jkoscf (mgr.14182) 1562 : cluster [DBG] pgmap v1012: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:25:05.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:04 smithi152 bash[16344]: cephadm 2024-01-24T03:25:03.424355+0000 mgr.smithi152.jkoscf (mgr.14182) 1563 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.maiawl on smithi195 2024-01-24T03:25:05.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:04 smithi152 bash[16344]: cluster 2024-01-24T03:25:03.787277+0000 mon.smithi152 (mon.0) 1033 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:25:05.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:04 smithi152 bash[16344]: cluster 2024-01-24T03:25:03.787362+0000 mon.smithi152 (mon.0) 1034 : cluster [INF] Cluster is now healthy 2024-01-24T03:25:05.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:04 smithi195 bash[19846]: cluster 2024-01-24T03:25:03.402061+0000 mgr.smithi152.jkoscf (mgr.14182) 1562 : cluster [DBG] pgmap v1012: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:25:05.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:04 smithi195 bash[19846]: cephadm 2024-01-24T03:25:03.424355+0000 mgr.smithi152.jkoscf (mgr.14182) 1563 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.maiawl on smithi195 2024-01-24T03:25:05.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:04 smithi195 bash[19846]: cluster 2024-01-24T03:25:03.787277+0000 mon.smithi152 (mon.0) 1033 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-24T03:25:05.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:04 smithi195 bash[19846]: cluster 2024-01-24T03:25:03.787362+0000 mon.smithi152 (mon.0) 1034 : cluster [INF] Cluster is now healthy 2024-01-24T03:25:05.671 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a70aebef70df6ec2d957347ccbfc484e0573dd5f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 676f9788-ba63-11ee-95b1-87774f69a715 -- ceph orch ls -f json 2024-01-24T03:25:06.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:05 smithi152 bash[16344]: audit 2024-01-24T03:25:04.067691+0000 mgr.smithi152.jkoscf (mgr.14182) 1564 : audit [DBG] from='client.15818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:25:06.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:05 smithi195 bash[19846]: audit 2024-01-24T03:25:04.067691+0000 mgr.smithi152.jkoscf (mgr.14182) 1564 : audit [DBG] from='client.15818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:25:07.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:06 smithi152 bash[16344]: cluster 2024-01-24T03:25:05.403586+0000 mgr.smithi152.jkoscf (mgr.14182) 1565 : cluster [DBG] pgmap v1013: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:25:07.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:06 smithi195 bash[19846]: cluster 2024-01-24T03:25:05.403586+0000 mgr.smithi152.jkoscf (mgr.14182) 1565 : cluster [DBG] pgmap v1013: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:25:08.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:07 smithi152 bash[16344]: audit 2024-01-24T03:25:07.346122+0000 mon.smithi152 (mon.0) 1035 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.maiawl"}]: dispatch 2024-01-24T03:25:08.240 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:07 smithi195 bash[19846]: audit 2024-01-24T03:25:07.346122+0000 mon.smithi152 (mon.0) 1035 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.maiawl"}]: dispatch 2024-01-24T03:25:09.053 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-01-24T03:25:09.054 INFO:teuthology.orchestra.run.smithi152.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-24T02:52:29.898502Z", "last_refresh": "2024-01-24T03:22:40.516368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-24T02:52:22.166988Z", "last_refresh": "2024-01-24T03:22:40.516557Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-24T02:52:26.045811Z", "last_refresh": "2024-01-24T03:22:40.516757Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-24T03:23:58.655584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.xkxaew on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-xkxaew\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.xkxaew\nDeploy daemon haproxy.nfs.foo.smithi195.xkxaew ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.757663Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi152.jmxvbg on smithi152: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi152-jmxvbg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi152.jmxvbg\nDeploy daemon haproxy.nfs.foo.smithi152.jmxvbg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi152 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-24T03:24:02.760444Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi195.ckngbj on smithi195: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:24:02.762661Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi152.wouxww on smithi152: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-24T03:25:07.347926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi195.maiawl on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl\nDeploy daemon haproxy.nfs.foo.smithi195.maiawl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.152/16"}, "status": {"created": "2024-01-24T02:59:40.277908Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.152/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-24T02:52:20.294285Z", "last_refresh": "2024-01-24T03:22:40.516166Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:53:49.813032Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi152:172.21.15.152=smithi152", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-24T02:53:49.807465Z", "last_refresh": "2024-01-24T03:22:40.515861Z", "running": 2, "size": 2}}, {"events": ["2024-01-24T02:59:40.276207Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-24T02:59:40.270037Z", "last_refresh": "2024-01-24T03:22:40.518201Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-24T02:52:28.023848Z", "last_refresh": "2024-01-24T03:22:40.516945Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-24T02:54:17.862235Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-24T02:54:17.855150Z", "last_refresh": "2024-01-24T03:22:40.517163Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-24T02:52:24.111628Z", "last_refresh": "2024-01-24T03:23:54.394014Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-24T02:59:34.371531Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-24T02:59:49.106275Z", "last_refresh": "2024-01-24T03:22:40.518013Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-24T03:25:09.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: cephadm 2024-01-24T03:25:07.344907+0000 mgr.smithi152.jkoscf (mgr.14182) 1566 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl 2024-01-24T03:25:09.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:25:09.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl 2024-01-24T03:25:09.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:25:09.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.081 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.maiawl ... 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: Traceback (most recent call last): 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: yield (conn, connr) 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: code, '\n'.join(err))) 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.082 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.maiawl ... 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: cephadm 2024-01-24T03:25:07.345479+0000 mgr.smithi152.jkoscf (mgr.14182) 1567 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: cephadm 2024-01-24T03:25:07.348196+0000 mgr.smithi152.jkoscf (mgr.14182) 1568 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.maiawl on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: /usr/bin/docker: stdout 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.083 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: Deploy daemon haproxy.nfs.foo.smithi195.maiawl ... 2024-01-24T03:25:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:25:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:25:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:25:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: stat: stderr See 'docker run --help'. 2024-01-24T03:25:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:25:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: cephadm 2024-01-24T03:25:07.353312+0000 mgr.smithi152.jkoscf (mgr.14182) 1569 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.iwftvs on smithi152 2024-01-24T03:25:09.084 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:08 smithi152 bash[16344]: cluster 2024-01-24T03:25:07.404792+0000 mgr.smithi152.jkoscf (mgr.14182) 1570 : cluster [DBG] pgmap v1014: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:25:09.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: cephadm 2024-01-24T03:25:07.344907+0000 mgr.smithi152.jkoscf (mgr.14182) 1566 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl 2024-01-24T03:25:09.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:25:09.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl 2024-01-24T03:25:09.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.241 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.maiawl ... 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: Traceback (most recent call last): 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: yield (conn, connr) 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: code, '\n'.join(err))) 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:25:09.242 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.maiawl ... 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: cephadm 2024-01-24T03:25:07.345479+0000 mgr.smithi152.jkoscf (mgr.14182) 1567 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: cephadm 2024-01-24T03:25:07.348196+0000 mgr.smithi152.jkoscf (mgr.14182) 1568 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi195.maiawl on smithi195: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy-nfs-foo-smithi195-maiawl 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.243 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: /usr/bin/docker: stdout 2024-01-24T03:25:09.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: /usr/bin/docker: stderr Error: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-haproxy.nfs.foo.smithi195.maiawl 2024-01-24T03:25:09.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: Deploy daemon haproxy.nfs.foo.smithi195.maiawl ... 2024-01-24T03:25:09.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:25:09.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-24T03:25:09.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-24T03:25:09.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: stat: stderr See 'docker run --help'. 2024-01-24T03:25:09.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi195 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-24T03:25:09.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: cephadm 2024-01-24T03:25:07.353312+0000 mgr.smithi152.jkoscf (mgr.14182) 1569 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi152.iwftvs on smithi152 2024-01-24T03:25:09.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:08 smithi195 bash[19846]: cluster 2024-01-24T03:25:07.404792+0000 mgr.smithi152.jkoscf (mgr.14182) 1570 : cluster [DBG] pgmap v1014: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:25:09.689 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-24T03:25:09.689 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/run_tasks.py", line 105, in run_tasks manager = run_one_task(taskname, ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ljflores_ceph_54ea2bd75ede6da27ba5852fe5d99aab52f94305/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2024-01-24T03:25:09.913 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=f8ec000e84b24607aea84eef354943b8 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/run_tasks.py", line 105, in run_tasks manager = run_one_task(taskname, ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ljflores_ceph_54ea2bd75ede6da27ba5852fe5d99aab52f94305/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2024-01-24T03:25:09.915 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-01-24T03:25:09.925 INFO:tasks.vip:Removing 10.0.15.152 (and any VIPs) on smithi152.front.sepia.ceph.com iface enp3s0f1... 2024-01-24T03:25:09.926 DEBUG:teuthology.orchestra.run.smithi152:> sudo ip addr del 10.0.15.152/16 dev enp3s0f1 2024-01-24T03:25:09.946 DEBUG:teuthology.orchestra.run.smithi152:> sudo ip addr del 10.0.31.152/16 dev enp3s0f1 2024-01-24T03:25:10.001 INFO:teuthology.orchestra.run.smithi152.stderr:RTNETLINK answers: Cannot assign requested address 2024-01-24T03:25:10.001 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-01-24T03:25:10.002 INFO:tasks.vip:Removing 10.0.15.195 (and any VIPs) on smithi195.front.sepia.ceph.com iface enp3s0f1... 2024-01-24T03:25:10.002 DEBUG:teuthology.orchestra.run.smithi195:> sudo ip addr del 10.0.15.195/16 dev enp3s0f1 2024-01-24T03:25:10.018 DEBUG:teuthology.orchestra.run.smithi195:> sudo ip addr del 10.0.31.152/16 dev enp3s0f1 2024-01-24T03:25:10.075 INFO:teuthology.orchestra.run.smithi195.stderr:RTNETLINK answers: Cannot assign requested address 2024-01-24T03:25:10.075 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-01-24T03:25:10.076 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-01-24T03:25:10.087 INFO:tasks.cephadm:Teardown begin 2024-01-24T03:25:10.088 DEBUG:teuthology.orchestra.run.smithi152:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-24T03:25:10.103 DEBUG:teuthology.orchestra.run.smithi195:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-24T03:25:10.134 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-01-24T03:25:10.135 DEBUG:teuthology.orchestra.run.smithi152:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-01-24T03:25:10.153 DEBUG:teuthology.orchestra.run.smithi195:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-01-24T03:25:10.183 INFO:tasks.cephadm:Stopping all daemons... 2024-01-24T03:25:10.183 INFO:tasks.cephadm.mon.smithi152:Stopping mon.smithi152... 2024-01-24T03:25:10.183 DEBUG:teuthology.orchestra.run.smithi152:> sudo systemctl stop ceph-676f9788-ba63-11ee-95b1-87774f69a715@mon.smithi152 2024-01-24T03:25:10.526 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:10 smithi152 systemd[1]: Stopping Ceph mon.smithi152 for 676f9788-ba63-11ee-95b1-87774f69a715... 2024-01-24T03:25:10.526 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:10 smithi152 bash[108768]: Error response from daemon: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-mon.smithi152 2024-01-24T03:25:10.527 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:10 smithi152 bash[16344]: audit 2024-01-24T03:25:09.041177+0000 mgr.smithi152.jkoscf (mgr.14182) 1571 : audit [DBG] from='client.15822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:25:10.527 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:10 smithi152 bash[16344]: audit 2024-01-24T03:25:09.312179+0000 mon.smithi152 (mon.0) 1036 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:25:10.527 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:10 smithi152 bash[16344]: cluster 2024-01-24T03:25:09.406164+0000 mgr.smithi152.jkoscf (mgr.14182) 1572 : cluster [DBG] pgmap v1015: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:25:10.527 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:10 smithi152 bash[16344]: debug 2024-01-24T03:25:10.402+0000 7fb8703c2700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi152 -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-24T03:25:10.527 INFO:journalctl@ceph.mon.smithi152.smithi152.stdout:Jan 24 03:25:10 smithi152 bash[16344]: debug 2024-01-24T03:25:10.402+0000 7fb8703c2700 -1 mon.smithi152@0(leader) e2 *** Got Signal Terminated *** 2024-01-24T03:25:10.740 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:10 smithi195 bash[19846]: audit 2024-01-24T03:25:09.041177+0000 mgr.smithi152.jkoscf (mgr.14182) 1571 : audit [DBG] from='client.15822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-24T03:25:10.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:10 smithi195 bash[19846]: audit 2024-01-24T03:25:09.312179+0000 mon.smithi152 (mon.0) 1036 : audit [INF] from='mgr.14182 172.21.15.152:0/3981043044' entity='mgr.smithi152.jkoscf' 2024-01-24T03:25:10.741 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:10 smithi195 bash[19846]: cluster 2024-01-24T03:25:09.406164+0000 mgr.smithi152.jkoscf (mgr.14182) 1572 : cluster [DBG] pgmap v1015: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-24T03:25:11.440 DEBUG:teuthology.orchestra.run.smithi152:> sudo pkill -f 'journalctl -f -n 0 -u ceph-676f9788-ba63-11ee-95b1-87774f69a715@mon.smithi152.service' 2024-01-24T03:25:11.480 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-01-24T03:25:11.481 INFO:tasks.cephadm.mon.smithi152:Stopped mon.smithi152 2024-01-24T03:25:11.481 INFO:tasks.cephadm.mon.smithi195:Stopping mon.smithi195... 2024-01-24T03:25:11.481 DEBUG:teuthology.orchestra.run.smithi195:> sudo systemctl stop ceph-676f9788-ba63-11ee-95b1-87774f69a715@mon.smithi195 2024-01-24T03:25:11.857 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:11 smithi195 systemd[1]: Stopping Ceph mon.smithi195 for 676f9788-ba63-11ee-95b1-87774f69a715... 2024-01-24T03:25:11.857 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:11 smithi195 bash[44379]: Error response from daemon: No such container: ceph-676f9788-ba63-11ee-95b1-87774f69a715-mon.smithi195 2024-01-24T03:25:11.857 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:11 smithi195 bash[19846]: debug 2024-01-24T03:25:11.707+0000 7f9c7ba35700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi195 -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-24T03:25:11.857 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Jan 24 03:25:11 smithi195 bash[19846]: debug 2024-01-24T03:25:11.707+0000 7f9c7ba35700 -1 mon.smithi195@1(peon) e2 *** Got Signal Terminated *** 2024-01-24T03:25:12.633 DEBUG:teuthology.orchestra.run.smithi195:> sudo pkill -f 'journalctl -f -n 0 -u ceph-676f9788-ba63-11ee-95b1-87774f69a715@mon.smithi195.service' 2024-01-24T03:25:12.670 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-01-24T03:25:12.671 INFO:tasks.cephadm.mon.smithi195:Stopped mon.smithi195 2024-01-24T03:25:12.671 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 676f9788-ba63-11ee-95b1-87774f69a715 --force --keep-logs 2024-01-24T03:26:16.855 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 676f9788-ba63-11ee-95b1-87774f69a715 --force --keep-logs 2024-01-24T03:27:09.873 DEBUG:teuthology.orchestra.run.smithi152:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-24T03:27:09.887 DEBUG:teuthology.orchestra.run.smithi195:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-24T03:27:09.902 INFO:tasks.cephadm:Archiving crash dumps... 2024-01-24T03:27:09.904 DEBUG:teuthology.misc:Transferring archived files from smithi152:/var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi/7529863/remote/ubuntu@smithi152.front.sepia.ceph.com/crash 2024-01-24T03:27:09.905 DEBUG:teuthology.orchestra.run.smithi152:> sudo tar c -f - -C /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/crash -- . 2024-01-24T03:27:09.944 INFO:teuthology.orchestra.run.smithi152.stderr:tar: /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/crash: Cannot open: No such file or directory 2024-01-24T03:27:09.945 INFO:teuthology.orchestra.run.smithi152.stderr:tar: Error is not recoverable: exiting now 2024-01-24T03:27:09.946 DEBUG:teuthology.misc:Transferring archived files from smithi195:/var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi/7529863/remote/ubuntu@smithi195.front.sepia.ceph.com/crash 2024-01-24T03:27:09.947 DEBUG:teuthology.orchestra.run.smithi195:> sudo tar c -f - -C /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/crash -- . 2024-01-24T03:27:09.962 INFO:teuthology.orchestra.run.smithi195.stderr:tar: /var/lib/ceph/676f9788-ba63-11ee-95b1-87774f69a715/crash: Cannot open: No such file or directory 2024-01-24T03:27:09.963 INFO:teuthology.orchestra.run.smithi195.stderr:tar: Error is not recoverable: exiting now 2024-01-24T03:27:09.963 INFO:tasks.cephadm:Checking cluster log for badness... 2024-01-24T03:27:09.964 DEBUG:teuthology.orchestra.run.smithi152:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-01-24T03:27:10.002 INFO:teuthology.orchestra.run.smithi152.stderr:grep: /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph.log: No such file or directory 2024-01-24T03:27:10.004 INFO:tasks.cephadm:Compressing logs... 2024-01-24T03:27:10.004 DEBUG:teuthology.orchestra.run.smithi152:> 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-24T03:27:10.048 DEBUG:teuthology.orchestra.run.smithi195:> 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-24T03:27:10.061 INFO:teuthology.orchestra.run.smithi152.stderr:find: '/var/log/rbd-target-api'gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-volume.log 2024-01-24T03:27:10.061 INFO:teuthology.orchestra.run.smithi152.stderr:: No such file or directory 2024-01-24T03:27:10.061 INFO:teuthology.orchestra.run.smithi152.stderr:gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.7.log 2024-01-24T03:27:10.062 INFO:teuthology.orchestra.run.smithi152.stderr:gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.1.log 2024-01-24T03:27:10.063 INFO:teuthology.orchestra.run.smithi152.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-volume.log: /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-mgr.smithi152.jkoscf.log 2024-01-24T03:27:10.063 INFO:teuthology.orchestra.run.smithi152.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.5.log 2024-01-24T03:27:10.064 INFO:teuthology.orchestra.run.smithi195.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-01-24T03:27:10.064 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.6.log 2024-01-24T03:27:10.065 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-volume.log 2024-01-24T03:27:10.065 INFO:teuthology.orchestra.run.smithi152.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-mgr.smithi152.jkoscf.log: gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-mon.smithi152.log 2024-01-24T03:27:10.065 INFO:teuthology.orchestra.run.smithi152.stderr:gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.3.log 2024-01-24T03:27:10.066 INFO:teuthology.orchestra.run.smithi152.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-client.rgw.foorgw.smithi152.lohnfz.log 2024-01-24T03:27:10.067 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-mgr.smithi195.utuqsp.log 2024-01-24T03:27:10.067 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.0.log 2024-01-24T03:27:10.067 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-mgr.smithi195.utuqsp.log: gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-mon.smithi195.log 2024-01-24T03:27:10.068 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-client.rgw.foorgw.smithi195.fhqphd.log 2024-01-24T03:27:10.068 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-mon.smithi195.log: gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.2.log 2024-01-24T03:27:10.069 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-client.rgw.foorgw.smithi195.fhqphd.log: 74.1% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-client.rgw.foorgw.smithi195.fhqphd.log.gz 2024-01-24T03:27:10.069 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.4.log 2024-01-24T03:27:10.070 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-01-24T03:27:10.071 INFO:teuthology.orchestra.run.smithi152.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-mon.smithi152.log: /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-01-24T03:27:10.072 INFO:teuthology.orchestra.run.smithi152.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-client.rgw.foorgw.smithi152.lohnfz.log: 73.8% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-client.rgw.foorgw.smithi152.lohnfz.log.gz 2024-01-24T03:27:10.075 INFO:teuthology.orchestra.run.smithi152.stderr:/var/log/ceph/cephadm.log: 92.4% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-volume.log.gz 2024-01-24T03:27:10.078 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.4.log: /var/log/ceph/cephadm.log: 92.4% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-volume.log.gz 2024-01-24T03:27:10.084 INFO:teuthology.orchestra.run.smithi195.stderr: 93.6% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-mgr.smithi195.utuqsp.log.gz 2024-01-24T03:27:10.086 INFO:teuthology.orchestra.run.smithi195.stderr: 90.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-01-24T03:27:10.092 INFO:teuthology.orchestra.run.smithi152.stderr: 93.0% -- replaced with /var/log/ceph/cephadm.log.gz 2024-01-24T03:27:10.348 INFO:teuthology.orchestra.run.smithi152.stderr: 89.9% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-mgr.smithi152.jkoscf.log.gz 2024-01-24T03:27:10.364 INFO:teuthology.orchestra.run.smithi195.stderr: 93.0% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-mon.smithi195.log.gz 2024-01-24T03:27:11.089 INFO:teuthology.orchestra.run.smithi152.stderr: 90.4% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-mon.smithi152.log.gz 2024-01-24T03:27:11.206 INFO:teuthology.orchestra.run.smithi195.stderr: 93.4% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.2.log.gz 2024-01-24T03:27:11.272 INFO:teuthology.orchestra.run.smithi152.stderr: 93.5% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.1.log.gz 2024-01-24T03:27:11.279 INFO:teuthology.orchestra.run.smithi195.stderr: 93.7% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.4.log.gz 2024-01-24T03:27:11.336 INFO:teuthology.orchestra.run.smithi195.stderr: 93.3% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.6.log.gz 2024-01-24T03:27:11.350 INFO:teuthology.orchestra.run.smithi195.stderr: 93.6% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.0.log.gz 2024-01-24T03:27:11.351 INFO:teuthology.orchestra.run.smithi195.stderr: 2024-01-24T03:27:11.351 INFO:teuthology.orchestra.run.smithi195.stderr:real 0m1.298s 2024-01-24T03:27:11.351 INFO:teuthology.orchestra.run.smithi195.stderr:user 0m5.041s 2024-01-24T03:27:11.352 INFO:teuthology.orchestra.run.smithi195.stderr:sys 0m0.230s 2024-01-24T03:27:11.376 INFO:teuthology.orchestra.run.smithi152.stderr: 93.6% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.7.log.gz 2024-01-24T03:27:11.426 INFO:teuthology.orchestra.run.smithi152.stderr: 93.6% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.3.log.gz 2024-01-24T03:27:11.482 INFO:teuthology.orchestra.run.smithi152.stderr: 93.5% -- replaced with /var/log/ceph/676f9788-ba63-11ee-95b1-87774f69a715/ceph-osd.5.log.gz 2024-01-24T03:27:11.483 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-01-24T03:27:11.483 INFO:teuthology.orchestra.run.smithi152.stderr:real 0m1.432s 2024-01-24T03:27:11.484 INFO:teuthology.orchestra.run.smithi152.stderr:user 0m6.381s 2024-01-24T03:27:11.484 INFO:teuthology.orchestra.run.smithi152.stderr:sys 0m0.284s 2024-01-24T03:27:11.484 INFO:tasks.cephadm:Archiving logs... 2024-01-24T03:27:11.484 DEBUG:teuthology.misc:Transferring archived files from smithi152:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi/7529863/remote/ubuntu@smithi152.front.sepia.ceph.com/log 2024-01-24T03:27:11.485 DEBUG:teuthology.orchestra.run.smithi152:> sudo tar c -f - -C /var/log/ceph -- . 2024-01-24T03:27:12.429 DEBUG:teuthology.misc:Transferring archived files from smithi195:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi/7529863/remote/ubuntu@smithi195.front.sepia.ceph.com/log 2024-01-24T03:27:12.430 DEBUG:teuthology.orchestra.run.smithi195:> sudo tar c -f - -C /var/log/ceph -- . 2024-01-24T03:27:13.186 INFO:tasks.cephadm:Removing cluster... 2024-01-24T03:27:13.186 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 676f9788-ba63-11ee-95b1-87774f69a715 --force 2024-01-24T03:27:14.566 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 676f9788-ba63-11ee-95b1-87774f69a715 --force 2024-01-24T03:27:15.949 INFO:tasks.cephadm:Removing cephadm ... 2024-01-24T03:27:15.950 DEBUG:teuthology.orchestra.run.smithi152:> rm -rf /home/ubuntu/cephtest/cephadm 2024-01-24T03:27:15.956 DEBUG:teuthology.orchestra.run.smithi195:> rm -rf /home/ubuntu/cephtest/cephadm 2024-01-24T03:27:15.963 INFO:tasks.cephadm:Teardown complete 2024-01-24T03:27:15.963 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-01-24T03:27:15.973 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi152:/dev/vg_nvme/lv_1... 2024-01-24T03:27:15.973 DEBUG:teuthology.orchestra.run.smithi152:> sudo nvme disconnect -n lv_1 2024-01-24T03:27:16.275 INFO:teuthology.orchestra.run.smithi152.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-01-24T03:27:16.276 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-24T03:27:16.276 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi152:/dev/vg_nvme/lv_2... 2024-01-24T03:27:16.277 DEBUG:teuthology.orchestra.run.smithi152:> sudo nvme disconnect -n lv_2 2024-01-24T03:27:16.571 INFO:teuthology.orchestra.run.smithi152.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-01-24T03:27:16.572 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-24T03:27:16.573 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi152:/dev/vg_nvme/lv_3... 2024-01-24T03:27:16.573 DEBUG:teuthology.orchestra.run.smithi152:> sudo nvme disconnect -n lv_3 2024-01-24T03:27:16.843 INFO:teuthology.orchestra.run.smithi152.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-01-24T03:27:16.844 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-24T03:27:16.844 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi152:/dev/vg_nvme/lv_4... 2024-01-24T03:27:16.845 DEBUG:teuthology.orchestra.run.smithi152:> sudo nvme disconnect -n lv_4 2024-01-24T03:27:17.131 INFO:teuthology.orchestra.run.smithi152.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-01-24T03:27:17.132 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-24T03:27:17.133 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-01-24T03:27:17.133 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/scratch_devs 2024-01-24T03:27:17.148 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi195:/dev/vg_nvme/lv_1... 2024-01-24T03:27:17.148 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme disconnect -n lv_1 2024-01-24T03:27:17.441 INFO:teuthology.orchestra.run.smithi195.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-01-24T03:27:17.442 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-24T03:27:17.443 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi195:/dev/vg_nvme/lv_2... 2024-01-24T03:27:17.443 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme disconnect -n lv_2 2024-01-24T03:27:17.745 INFO:teuthology.orchestra.run.smithi195.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-01-24T03:27:17.746 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-24T03:27:17.747 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi195:/dev/vg_nvme/lv_3... 2024-01-24T03:27:17.747 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme disconnect -n lv_3 2024-01-24T03:27:18.045 INFO:teuthology.orchestra.run.smithi195.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-01-24T03:27:18.046 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-24T03:27:18.047 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi195:/dev/vg_nvme/lv_4... 2024-01-24T03:27:18.047 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme disconnect -n lv_4 2024-01-24T03:27:18.345 INFO:teuthology.orchestra.run.smithi195.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-01-24T03:27:18.346 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-24T03:27:18.348 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-01-24T03:27:18.348 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/scratch_devs 2024-01-24T03:27:18.364 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-01-24T03:27:18.376 INFO:teuthology.task.clock:Checking final clock skew... 2024-01-24T03:27:18.376 DEBUG:teuthology.orchestra.run.smithi152:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-24T03:27:18.378 DEBUG:teuthology.orchestra.run.smithi195:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-24T03:27:18.398 INFO:teuthology.orchestra.run.smithi152.stdout: remote refid st t when poll reach delay offset jitter 2024-01-24T03:27:18.399 INFO:teuthology.orchestra.run.smithi152.stdout:============================================================================== 2024-01-24T03:27:18.399 INFO:teuthology.orchestra.run.smithi152.stdout:*hv01.front.sepi 44.4.53.2 2 u 23 64 377 0.093 1.787 1.396 2024-01-24T03:27:18.399 INFO:teuthology.orchestra.run.smithi152.stdout:+hv02.front.sepi 63.231.80.2 3 u 28 64 377 0.101 4.254 1.542 2024-01-24T03:27:18.399 INFO:teuthology.orchestra.run.smithi152.stdout:+hv03.front.sepi 74.6.168.72 3 u 11 64 377 0.099 2.376 1.333 2024-01-24T03:27:18.399 INFO:teuthology.orchestra.run.smithi152.stdout: hv04.front.sepi .INIT. 16 u - 1024 0 0.000 0.000 0.000 2024-01-24T03:27:18.429 INFO:teuthology.orchestra.run.smithi195.stdout: remote refid st t when poll reach delay offset jitter 2024-01-24T03:27:18.429 INFO:teuthology.orchestra.run.smithi195.stdout:============================================================================== 2024-01-24T03:27:18.429 INFO:teuthology.orchestra.run.smithi195.stdout:*hv01.front.sepi 44.4.53.2 2 u 4 64 377 0.106 0.838 0.194 2024-01-24T03:27:18.429 INFO:teuthology.orchestra.run.smithi195.stdout:+hv02.front.sepi 63.231.80.2 3 u 18 64 377 0.077 1.086 0.360 2024-01-24T03:27:18.429 INFO:teuthology.orchestra.run.smithi195.stdout:+hv03.front.sepi 74.6.168.72 3 u 15 64 377 0.090 1.544 0.270 2024-01-24T03:27:18.430 INFO:teuthology.orchestra.run.smithi195.stdout: hv04.front.sepi .INIT. 16 u - 1024 0 0.000 0.000 0.000 2024-01-24T03:27:18.430 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-01-24T03:27:18.506 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-01-24T03:27:18.506 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-01-24T03:27:18.524 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-01-24T03:27:18.540 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-01-24T03:27:18.635 INFO:teuthology.task.internal:Duration was 2505.330199 seconds 2024-01-24T03:27:18.635 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-01-24T03:27:18.681 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-01-24T03:27:18.681 DEBUG:teuthology.orchestra.run.smithi152:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-01-24T03:27:18.683 DEBUG:teuthology.orchestra.run.smithi195:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-01-24T03:27:18.733 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-01-24T03:27:18.733 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi152.front.sepia.ceph.com 2024-01-24T03:27:18.733 DEBUG:teuthology.orchestra.run.smithi152:> 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-24T03:27:18.781 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi195.front.sepia.ceph.com 2024-01-24T03:27:18.781 DEBUG:teuthology.orchestra.run.smithi195:> 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-24T03:27:18.797 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-01-24T03:27:18.797 DEBUG:teuthology.orchestra.run.smithi152:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-01-24T03:27:18.824 DEBUG:teuthology.orchestra.run.smithi195:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-01-24T03:27:18.902 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-01-24T03:27:18.902 DEBUG:teuthology.orchestra.run.smithi152:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-01-24T03:27:18.905 DEBUG:teuthology.orchestra.run.smithi195:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-01-24T03:27:19.050 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-01-24T03:27:19.064 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-01-24T03:27:19.064 DEBUG:teuthology.orchestra.run.smithi152:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-01-24T03:27:19.078 DEBUG:teuthology.orchestra.run.smithi195:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-01-24T03:27:19.093 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-01-24T03:27:19.107 DEBUG:teuthology.orchestra.run.smithi152:> 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-24T03:27:19.120 DEBUG:teuthology.orchestra.run.smithi195:> 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-24T03:27:19.131 INFO:teuthology.orchestra.run.smithi152.stdout:kernel.core_pattern = core 2024-01-24T03:27:19.150 INFO:teuthology.orchestra.run.smithi195.stdout:kernel.core_pattern = core 2024-01-24T03:27:19.179 DEBUG:teuthology.orchestra.run.smithi152:> test -e /home/ubuntu/cephtest/archive/coredump 2024-01-24T03:27:19.199 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-24T03:27:19.200 DEBUG:teuthology.orchestra.run.smithi195:> test -e /home/ubuntu/cephtest/archive/coredump 2024-01-24T03:27:19.225 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-24T03:27:19.226 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-01-24T03:27:19.240 INFO:teuthology.task.internal:Transferring archived files... 2024-01-24T03:27:19.241 DEBUG:teuthology.misc:Transferring archived files from smithi152:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi/7529863/remote/smithi152 2024-01-24T03:27:19.242 DEBUG:teuthology.orchestra.run.smithi152:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-01-24T03:27:19.282 DEBUG:teuthology.misc:Transferring archived files from smithi195:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi/7529863/remote/smithi195 2024-01-24T03:27:19.283 DEBUG:teuthology.orchestra.run.smithi195:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-01-24T03:27:19.311 INFO:teuthology.task.internal:Removing archive directory... 2024-01-24T03:27:19.311 DEBUG:teuthology.orchestra.run.smithi152:> rm -rf -- /home/ubuntu/cephtest/archive 2024-01-24T03:27:19.320 DEBUG:teuthology.orchestra.run.smithi195:> rm -rf -- /home/ubuntu/cephtest/archive 2024-01-24T03:27:19.355 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-01-24T03:27:19.369 INFO:teuthology.task.internal:Not uploading archives. 2024-01-24T03:27:19.369 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-01-24T03:27:19.483 INFO:teuthology.task.internal:Tidying up after the test... 2024-01-24T03:27:19.483 DEBUG:teuthology.orchestra.run.smithi152:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-01-24T03:27:19.485 DEBUG:teuthology.orchestra.run.smithi195:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-01-24T03:27:19.490 INFO:teuthology.orchestra.run.smithi152.stdout: 528233 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jan 24 03:27 /home/ubuntu/cephtest 2024-01-24T03:27:19.493 INFO:teuthology.orchestra.run.smithi195.stdout: 659550 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jan 24 03:27 /home/ubuntu/cephtest 2024-01-24T03:27:19.495 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-01-24T03:27:19.506 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-01-24T03:27:19.592 INFO:teuthology.nuke:Checking targets against current locks 2024-01-24T03:27:19.621 DEBUG:teuthology.nuke:shortname: smithi152 2024-01-24T03:27:19.621 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-01-24T03:27:19.645 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi152.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi/7529863', '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-24 02:37:18.114509', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE='} 2024-01-24T03:27:19.649 DEBUG:teuthology.nuke:shortname: smithi195 2024-01-24T03:27:19.649 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-01-24T03:27:19.673 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi195.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-23_19:22:22-rados-wip-yuri5-testing-2024-01-11-1300-pacific-distro-default-smithi/7529863', '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-24 02:37:18.116373', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE='} 2024-01-24T03:27:19.699 INFO:teuthology.orchestra.console.smithi152:Power off 2024-01-24T03:27:19.700 DEBUG:teuthology.orchestra.console.smithi152:pexpect command: ipmitool -H smithi152.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-01-24T03:27:19.723 DEBUG:teuthology.orchestra.console.smithi152:power off output: Chassis Power Control: Down/Off 2024-01-24T03:27:19.723 DEBUG:teuthology.orchestra.console.smithi152:pexpect command: ipmitool -H smithi152.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-24T03:27:19.738 INFO:teuthology.orchestra.console.smithi195:Power off 2024-01-24T03:27:19.738 DEBUG:teuthology.orchestra.console.smithi195:pexpect command: ipmitool -H smithi195.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-01-24T03:27:19.748 DEBUG:teuthology.orchestra.console.smithi152:check power output: Chassis Power is on 2024-01-24T03:27:19.761 DEBUG:teuthology.orchestra.console.smithi195:power off output: Chassis Power Control: Down/Off 2024-01-24T03:27:19.761 DEBUG:teuthology.orchestra.console.smithi195:pexpect command: ipmitool -H smithi195.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-24T03:27:19.784 DEBUG:teuthology.orchestra.console.smithi195:check power output: Chassis Power is on 2024-01-24T03:27:23.749 DEBUG:teuthology.orchestra.console.smithi152:pexpect command: ipmitool -H smithi152.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-24T03:27:23.785 DEBUG:teuthology.orchestra.console.smithi195:pexpect command: ipmitool -H smithi195.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-24T03:27:23.861 DEBUG:teuthology.orchestra.console.smithi152:check power output: Chassis Power is on 2024-01-24T03:27:23.895 DEBUG:teuthology.orchestra.console.smithi195:check power output: Chassis Power is on 2024-01-24T03:27:27.866 DEBUG:teuthology.orchestra.console.smithi152:pexpect command: ipmitool -H smithi152.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-24T03:27:27.896 DEBUG:teuthology.orchestra.console.smithi195:pexpect command: ipmitool -H smithi195.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-24T03:27:27.977 DEBUG:teuthology.orchestra.console.smithi152:check power output: Chassis Power is off 2024-01-24T03:27:28.006 DEBUG:teuthology.orchestra.console.smithi195:check power output: Chassis Power is off 2024-01-24T03:27:28.078 INFO:teuthology.orchestra.console.smithi152:Power off completed 2024-01-24T03:27:28.107 INFO:teuthology.orchestra.console.smithi195:Power off completed 2024-01-24T03:27:28.211 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-user 3-final} duration: 2505.3301985263824 failure_reason: reached maximum tries (301) after waiting for 300 seconds owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=f8ec000e84b24607aea84eef354943b8 status: fail success: false 2024-01-24T03:27:28.212 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-01-24T03:27:28.325 INFO:teuthology.run:FAIL